From 609865ba75c23b305766c8f6a6af252e425f848b Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 11 May 2023 20:35:01 -0700 Subject: [PATCH] Increase read fuzzing 10x since write fuzzing is the bottleneck --- .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 56e98d0b..b2fa83ac 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -90,7 +90,7 @@ jobs: cargo fuzz build fuzz_read - name: run fuzz run: | - cargo fuzz run fuzz_read -- -timeout=1s -jobs=10 -workers=2 -runs=1000000 -max_len=5000000000 + cargo fuzz run fuzz_read -- -timeout=1s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000 - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3