-
Notifications
You must be signed in to change notification settings - Fork 0
ci: fix EXDEV error in fuzz-smoke rustup nightly install #113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
26bab0a
ci: fix EXDEV error in fuzz-smoke rustup nightly install
27Bslash6 362d5f4
ci: pin fuzz-smoke to nightly-2026-05-10 (rustix vs nightly breakage)
27Bslash6 2cff09a
ci: pin nightly to 2026-04-27 (last known-good for cargo-fuzz)
27Bslash6 d9ffc0a
ci: fix fuzz-smoke — correct crate dependency, skip broken targets
27Bslash6 3d096c8
ci: fix stale target count in fuzz summary (use GITHUB_OUTPUT)
27Bslash6 167a55b
ci: delete fluff summary step from fuzz-smoke
27Bslash6 5691ec5
ci: disable Redis RDB persistence in CI (ephemeral, no disk needed)
27Bslash6 bb01e59
ci: use redis-py to disable persistence (redis-cli not on runner)
27Bslash6 a3b629e
ci: start Redis via docker run with --save '' --appendonly no
27Bslash6 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
Is Rust nightly-2026-04-27 currently available for download?💡 Result:
Yes, the Rust nightly toolchain for 2026-04-27 is available [1]. You can install this specific version using the rustup toolchain manager by running the following command in your terminal: rustup toolchain install nightly-2026-04-27 This command instructs rustup to download and install the nightly compiler release corresponding to that specific date [2][3][4]. Once installed, you can use it by referencing the toolchain name directly (e.g., rustup run nightly-2026-04-27 cargo build) or by setting it as an override for a specific project directory [2][3]. Note that nightly toolchains are generated daily, and while a build exists for 2026-04-27 [1], it is possible for some nightly builds to be missing certain non-default components (such as clippy or rust-docs) depending on the build status for that day [5]. If you encounter issues with missing components, you can try using the --profile=minimal flag or check the build status via the rustup-components-history project [5].
Citations:
🌐 Web query:
Does cargo-fuzz 0.13.1 have a known issue with rustix and rustc_layout_scalar_valid_range attributes in Rust nightly builds after April 2026?💡 Result:
Yes, cargo-fuzz 0.13.1 has a known issue with Rust nightly builds from May 2026 [1]. This issue arises because the Rust compiler removed support for the internal
rustc_layout_scalar_valid_range_*attributes [2][3][4], which were previously used by dependencies likerustix[1]. As of May 2026, the Rust compiler has fully deprecated and removed these internal attributes in favor of new pattern types [2][3][5]. Becausecargo-fuzz0.13.1 relies on older versions of its dependencies (such asrustix) that still utilize these now-removed attributes, the crate fails to compile on recent nightly toolchains [1]. Users encountering this error are advised to check for updates tocargo-fuzzor its dependencies that have migrated away from these internal compiler attributes [1].Citations:
cargo install --locked cargo-fuzzfails to install with current rust nightly (rustc 1.97.0-nightly (cb40c25f6 2026-05-04)) rust-fuzz/cargo-fuzz#442rustc_layout_scalar_valid_range_startattribute with pattern types rust-lang/rust#135996Monitor for cargo-fuzz updates to resolve rustix compatibility and remove nightly pin.
The pinned nightly (2026-04-27) is ~19 days old. Rust nightlies are retained for ~90 days before expiring on distribution servers. Once this nightly expires, the workflow will fail. The pin exists because cargo-fuzz 0.13.1 depends on rustix, which uses the now-removed
rustc_layout_scalar_valid_range_*internal compiler attributes. Track updates to cargo-fuzz that resolve this dependency issue, allowing migration away from a pinned nightly.🤖 Prompt for AI Agents