Skip to content

Commit

Permalink
Fix fuzz on latest nightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirbaio committed Sep 26, 2021
1 parent 21e0a30 commit 22400fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
toolchain: nightly
override: true
- name: Install cargo-fuzz
run: cargo install cargo-fuzz
# Fix for cargo-fuzz on latest nightly: https://github.com/rust-fuzz/cargo-fuzz/issues/276
# Switch back to installing from crates.io when it's released.
#run: cargo install cargo-fuzz
run: cargo install --git https://github.com/rust-fuzz/cargo-fuzz --rev b4df3e58f767b5cad8d1aa6753961003f56f3609
- name: Fuzz
run: cargo fuzz run packet_parser -- -max_len=1536 -max_total_time=30

0 comments on commit 22400fe

Please sign in to comment.