Skip to content

Commit

Permalink
Merge pull request lightningdevkit#3521 from TheBlueMatt/2025-01-fix-pin
Browse files Browse the repository at this point in the history
Fix fuzz CI failures
  • Loading branch information
tnull authored Jan 13, 2025
2 parents 5f68d71 + 5a771c3 commit c835e80
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 c835e80

Please sign in to comment.