From 61502b22a74f0e7ca53918c62ad42a08fbaa5dbd Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 10 May 2023 19:45:13 -0700 Subject: [PATCH] Increase fuzz_write jobs to reproduce a recent failure --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index da4d4cbd..56e98d0b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -116,7 +116,7 @@ jobs: cargo fuzz build fuzz_write - name: run fuzz run: | - cargo fuzz run fuzz_write -- -timeout=1s -jobs=30 -workers=2 -runs=100000 -max_len=5000000000 + cargo fuzz run fuzz_write -- -timeout=1s -jobs=100 -workers=2 -runs=100000 -max_len=5000000000 - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3