Skip to content

Commit

Permalink
Bug fix: reduce runs to 10k in CI fuzz_write
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Feb 29, 2024
1 parent 806c5d9 commit e843e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
cargo fuzz build --no-default-features fuzz_write
- name: run fuzz
run: |
cargo fuzz run fuzz_write -- -timeout=10s -jobs=100 -workers=2 -runs=50000 -max_len=5000000000 -dict=fuzz/fuzz.dict
cargo fuzz run fuzz_write -- -timeout=10s -jobs=100 -workers=2 -runs=10000 -max_len=5000000000 -dict=fuzz/fuzz.dict
- name: Upload any failure inputs
if: always()
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit e843e67

Please sign in to comment.