Skip to content
Merged
Show file tree
Hide file tree
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
22 changes: 14 additions & 8 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@ permissions:
jobs:
fuzz:
runs-on: ubuntu-latest
env:
RUSTUP_TOOLCHAIN: nightly
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: taiki-e/install-action@cargo-fuzz
- run: cargo fuzz run parsers -- -max_total_time=120 -max_len=2097152
env:
RUSTC_BOOTSTRAP: "1"
- run: cargo fuzz run interfaces -- -max_total_time=120 -max_len=2097152
env:
RUSTC_BOOTSTRAP: "1"
toolchain: nightly
Comment thread
dertin marked this conversation as resolved.
- uses: taiki-e/install-action@v2
with:
tool: cargo-fuzz
fallback: cargo-install
- uses: Swatinem/rust-cache@v2
with:
workspaces: fuzz
- run: cargo fuzz run parsers --target x86_64-unknown-linux-gnu -- -max_total_time=120 -max_len=2097152
working-directory: fuzz
- run: cargo fuzz run interfaces --target x86_64-unknown-linux-gnu -- -max_total_time=120 -max_len=2097152
working-directory: fuzz
24 changes: 24 additions & 0 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.