Skip to content

Commit

Permalink
Clean up fuzz test build to fix disk space usage fuzz CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueMatt committed Jan 10, 2025
1 parent 00157eb commit 9bb6358
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,10 @@ jobs:
run: |
cd fuzz && cargo update -p regex --precise "1.9.6" --verbose && cd ..
- name: Sanity check fuzz targets on Rust ${{ env.TOOLCHAIN }}
run: cd fuzz && RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz" cargo test --verbose --color always
run: |
cd fuzz
RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz" cargo test --verbose --color always
cargo clean
- name: Run fuzzers
run: cd fuzz && ./ci-fuzz.sh && cd ..

Expand Down

0 comments on commit 9bb6358

Please sign in to comment.