Skip to content

Commit c835e80

Browse files
authored
Merge pull request #3521 from TheBlueMatt/2025-01-fix-pin
Fix fuzz CI failures
2 parents 5f68d71 + 5a771c3 commit c835e80

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

+4-1
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)