From bfe274a779576901e4ef5c8fe7a1e33433625e20 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 10 May 2023 19:36:04 -0700 Subject: [PATCH] Bug fix --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 82fbc609..da4d4cbd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -92,12 +92,12 @@ jobs: run: | cargo fuzz run fuzz_read -- -timeout=1s -jobs=10 -workers=2 -runs=1000000 -max_len=5000000000 - name: Upload any failure inputs - if-no-files-found: ignore if: always() uses: actions/upload-artifact@v3 with: name: fuzz_read_bad_inputs path: fuzz/artifacts/fuzz_read/crash-* + if-no-files-found: ignore fuzz_write: runs-on: ubuntu-latest @@ -118,9 +118,9 @@ jobs: run: | cargo fuzz run fuzz_write -- -timeout=1s -jobs=30 -workers=2 -runs=100000 -max_len=5000000000 - name: Upload any failure inputs - if-no-files-found: ignore if: always() uses: actions/upload-artifact@v3 with: name: fuzz_write_bad_inputs path: fuzz/artifacts/fuzz_write/crash-* + if-no-files-found: ignore \ No newline at end of file