ci: A few fixes#288
Merged
cgwalters merged 3 commits intocomposefs:mainfrom May 4, 2026
Merged
Conversation
b64a25b to
a2f86df
Compare
Linux 7.0 introduced a kernel regression that breaks composefs boot when fsverity enforcement is enabled, failing with "has no fs-verity digest". The Arch CI runner pulls the latest Arch kernel (currently 7.0.3-arch1-2), so the default bls/arch job hits this at switch_root. See: bootc-dev/bootc#2174 Assisted-by: OpenCode (claude-sonnet-4-6) Signed-off-by: Colin Walters <walters@verbum.org>
Collapse the nested if-in-match-arm into a match guard, as clippy now requires with -D warnings. Assisted-by: OpenCode (claude-sonnet-4-6) Signed-off-by: Colin Walters <walters@verbum.org>
The default 'cargo install cargo-fuzz --locked' installs the latest version but uses its published lockfile which pins rustix 0.36. That version uses rustc_layout_scalar_valid_range_* attributes which nightly ≥ 1.97 (2026-05-03) now reserves for compiler-internal use, causing a compile error. Pin to 0.13.1 and drop --locked so cargo resolves fresh deps, picking up a compatible rustix version. Assisted-by: OpenCode (claude-sonnet-4-6) Signed-off-by: Colin Walters <walters@verbum.org>
a2f86df to
054c01d
Compare
jeckersb
approved these changes
May 4, 2026
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.
Linux 7.0 introduced a kernel regression that breaks composefs boot when fsverity enforcement is enabled, failing with "has no fs-verity digest". The Arch CI runner pulls the latest Arch kernel (currently 7.0.3-arch1-2), so the default bls/arch job hits this at switch_root.
See: bootc-dev/bootc#2174
Assisted-by: OpenCode (claude-sonnet-4-6)