Skip to content
Merged

45 #46

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
5 changes: 4 additions & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ jobs:
with:
tool: cargo-fuzz

- name: Add gnu target
run: rustup target add x86_64-unknown-linux-gnu

- name: Run fuzzer
run: cargo fuzz run ${{ matrix.target }} -- -max_total_time=300
run: cargo fuzz run ${{ matrix.target }} --target x86_64-unknown-linux-gnu -- -max_total_time=300
env:
RUST_BACKTRACE: 1

Expand Down