fix(ci): repair nightly CI and add fuzz compile guard#225
Merged
Conversation
- Add missing `tokio` dep to fuzz Cargo.toml (fixes arithmetic_fuzz build failure that has been red for 10+ consecutive days) - Pin monty git dep to `tag = "v0.0.7"` instead of `version = "0.0.7"` to prevent breakage when upstream bumps their Cargo.toml version - Add `just check-nightly` recipe that verifies last 3 nightly/fuzz runs are green — integrated into `just release-check` as a gate - Add Section 9 (Nightly CI Jobs) to maintenance spec with checks, escalation policy, and common failure pattern table https://claude.ai/code/session_01CDYMHeNs4YLXaDPKDmQBP8
- Add `fuzz-check` parallel job to CI that runs `cargo +nightly fuzz build` — catches missing deps in fuzz Cargo.toml before they reach nightly (would have caught the tokio omission immediately) - Commit fuzz Cargo.lock for reproducible builds and faster resolution - Add fuzz .gitignore to override root Cargo.lock exclusion - Wire fuzz-check into the gate `Check` job so PRs are blocked on it https://claude.ai/code/session_01CDYMHeNs4YLXaDPKDmQBP8
Bump exemptions for wasm-bindgen 0.2.109→0.2.111, js-sys/web-sys 0.3.86→0.3.88, serial_test 3.3.1→3.4.0. These are picked up by cargo generate-lockfile since Cargo.lock is not committed. https://claude.ai/code/session_01CDYMHeNs4YLXaDPKDmQBP8
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
tokiodep to fuzzCargo.toml(arithmetic_fuzz has been red 10+ days)tag = "v0.0.7"instead ofversion = "0.0.7"— stops breakage when upstream bumps their Cargo.tomlfuzz-checkCI job: parallel job that runscargo +nightly fuzz buildon every PR — catches fuzz dep issues before they reach nightlyCargo.lock: reproducible fuzz builds, override via fuzz-local.gitignorejust check-nightly: verifies last 3 nightly/fuzz runs are green, wired intojust release-checkas a gateTest plan
cargo checkpassescargo clippy --all-targets -- -D warningscleancargo +nightly fuzz buildcompiles all 3 fuzz targets locallyfuzz-checkjob passes (new parallel job)