diff --git a/.github/workflows/fuzzer.yml b/.github/workflows/fuzzer.yml index 5c6ea60e4a..f8989b298f 100644 --- a/.github/workflows/fuzzer.yml +++ b/.github/workflows/fuzzer.yml @@ -16,5 +16,7 @@ jobs: - name: run fuzz tests - ok to merge if this one fails # for now! run: | - cargo +nightly-2024-02-03 install --locked cargo-fuzz - cd crates/compiler/test_syntax/fuzz && cargo +nightly-2024-02-03 fuzz run -j4 fuzz_expr --sanitizer=none -- -dict=dict.txt -max_total_time=60 \ No newline at end of file + cargo +nightly-2024-02-03 install --locked cargo-fuzz + cd crates/compiler/test_syntax/fuzz && cargo +nightly-2024-02-03 fuzz run -j4 fuzz_expr --sanitizer=none -- -dict=dict.txt -max_total_time=60 || true + cd crates/compiler/test_syntax && for x in fuzz/artifacts/fuzz_expr/crash-*; do cargo run --bin minimize expr $x; done + cd crates/compiler/test_syntax && if ls fuzz/artifacts/fuzz_expr/ | grep crash-; then exit 1; fi