Skip to content

Commit d443f45

Browse files
pbrezinaalexey-tikhonov
authored andcommitted
ci: serialize make distcheck in build.yml
The parallel distcheck is full of potentiall race conditions because there is no defined ordering on the libraries. There were attempts to fix this using CI, but fixed one problem just revealed another one and ultimately the fix was becomming more complex and magical but still incomplete. Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> (cherry picked from commit df13bd9)
1 parent 2d283e8 commit d443f45

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ jobs:
4545
working-directory: x86_64
4646
run: |
4747
source ../contrib/fedora/bashrc_sssd
48-
make -j$PROCESSORS distcheck
48+
49+
# parallel distcheck is full of race conditions
50+
make -j1 distcheck
4951
5052
- uses: actions/upload-artifact@v7
5153
if: always()

0 commit comments

Comments
 (0)