Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,13 @@ jobs:
- name: Run fuzz target for 3600s
env:
TARGET: ${{ matrix.target }}
# cargo-fuzz defaults to x86_64-unknown-linux-musl on Linux; libfuzzer-sys
# enables -Zsanitizer=address by default and rustc rejects ASan with a
# statically-linked musl libc. Pin to gnu, mirroring fuzz-smoke.yml.
run: |
mkdir -p fuzz/artifacts fuzz/corpus
cargo +nightly fuzz run "${TARGET}" \
--target x86_64-unknown-linux-gnu \
-- -max_total_time=3600 -print_final_stats=1

- name: Upload corpus (always)
Expand Down
Loading