You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci: fix fuzz jobs - use nightly toolchain and fail on build errors
cargo-fuzz requires nightly Rust due to -Zsanitizer=address flag.
The previous config used stable 1.85 which silently failed (masked by || true).
Changes:
- Switch fuzz jobs to dtolnay/rust-toolchain@nightly
- Add explicit cargo fuzz build step to fail fast on compile errors
- Replace || true with || [ $? -eq 124 ] to allow timeout but catch real failures
- Update cache keys to include 'nightly' for separation
0 commit comments