fix(hub): add missing xz-libs entries to UBI10 RPM lockfile - #5394
Merged
openshift-ci[bot] merged 1 commit intoSep 14, 2026
Merged
openshift-ci[bot] merged 1 commit into
openshift-ci[bot] merged 1 commit into
Conversation
The xz package requires xz-libs at the same EVR, but rpms.lock.yaml only listed xz. This caused :next hub image builds to fail with "nothing provides xz-libs(x86-64) = 1:5.6.2-4.el10_2.1". Co-authored-by: Cursor <cursoragent@cursor.com>
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5394 +/- ##
==========================================
- Coverage 63.68% 59.69% -3.99%
==========================================
Files 121 109 -12
Lines 2288 2062 -226
Branches 527 501 -26
==========================================
- Hits 1457 1231 -226
Misses 829 829
Partials 2 2
Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
jonkoops
approved these changes
Sep 14, 2026
Contributor
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.



Summary
Add missing
xz-libsRPM entries (aarch64 and x86_64) to the UBI 10 hubrpms.lock.yaml, unblocking:nexthub image rebuilds after the better-sqlite3 merge.Root cause
The
xzpackage requiresxz-libsat the same EVR (1:5.6.2-4.el10_2.1), butdistgit/containers/rhdh-hub/rpms.lock.yamlonly listedxz. Hermetic hub builds then failed with:Fix
Add
xz-libslockfile entries for bothaarch64andx86_64at EVR1:5.6.2-4.el10_2.1, matching the existingxzentries.Test plan
grep xz-libs distgit/containers/rhdh-hub/rpms.lock.yamlshows aarch64 and x86_64 entries:nexthub image build completes without RPM dependency errorsrpms.lock.yamlContext
:nexthub image build failure:nextimage rebuild after #5359 (better-sqlite3 merge)Made with Cursor