[autobackport: sssd-2-13] ci: serialize make distcheck - #9001
Merged
alexey-tikhonov merged 1 commit intoJul 24, 2026
Merged
Conversation
alexey-tikhonov
approved these changes
Jul 24, 2026
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)
Contributor
Author
sssd-bot
force-pushed
the
SSSD-sssd-backport-pr8983-to-sssd-2-13
branch
from
July 24, 2026 16:07
715ae39 to
c7b4490
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is an automatic backport of PR#8983 ci: serialize make distcheck to branch sssd-2-13, created by @pbrezina.
Please make sure this backport is correct.
Note
The commits were cherry-picked without conflicts.
You can push changes to this pull request
Original commits
df13bd9 - ci: serialize make distcheck in build.yml
Backported commits
Original Pull Request Body
I saw make distcheck fail recently with linker due to a race condition when libsss_util.so was not available for libsss_ldap.
I let AI handle it:
Libtool relinks shared libraries during install. With parallel make,
install-sssdlibLTLIBRARIES and install-pkglibLTLIBRARIES run
concurrently, causing provider plugin relinks to read half-written
base library .so files (e.g. libsss_ldap reads libsss_util.so
mid-relink). Serialize the install targets to prevent this.
Assisted-By: Claude Code (Opus 4.6)