Skip to content

Commit

Permalink
Update fuzzing toolchain
Browse files Browse the repository at this point in the history
The new lockfile version needs a newer nightly toolchain.

Signed-off-by: Arthur Heymans <[email protected]>
  • Loading branch information
ArthurHeymans committed Dec 20, 2024
1 parent 700eabf commit 9c3251c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ run_verification_tests dpe_profile_p384_sha384 rustcrypto

# Build fuzz target
( cd dpe/fuzz
rustup toolchain install nightly-2023-11-16
cargo +nightly-2023-11-16 install cargo-fuzz cargo-afl --locked
rustup toolchain install nightly-2024-12-20
cargo +nightly-2024-12-20 install cargo-fuzz cargo-afl --locked
cargo fmt --check
cargo clippy --features libfuzzer-sys
cargo clippy --features afl
cargo +nightly-2023-11-16 fuzz build --features libfuzzer-sys
cargo +nightly-2023-11-16 afl build --features afl
cargo +nightly-2024-12-20 fuzz build --features libfuzzer-sys
cargo +nightly-2024-12-20 afl build --features afl
)

# Fix license headers
Expand Down

0 comments on commit 9c3251c

Please sign in to comment.