Skip to content

Commit 9bb6358

Browse files
committed
Clean up fuzz test build to fix disk space usage fuzz CI failures
1 parent 00157eb commit 9bb6358

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,10 @@ jobs:
229229
run: |
230230
cd fuzz && cargo update -p regex --precise "1.9.6" --verbose && cd ..
231231
- name: Sanity check fuzz targets on Rust ${{ env.TOOLCHAIN }}
232-
run: cd fuzz && RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz" cargo test --verbose --color always
232+
run: |
233+
cd fuzz
234+
RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz" cargo test --verbose --color always
235+
cargo clean
233236
- name: Run fuzzers
234237
run: cd fuzz && ./ci-fuzz.sh && cd ..
235238

0 commit comments

Comments
 (0)