From 5e9ccfb27d0e3278d57b6ee8f78d0b028f9b3260 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 10 May 2023 19:34:15 -0700 Subject: [PATCH] Upload failed fuzz inputs if any --- .github/workflows/ci.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 03383564..82fbc609 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -91,6 +91,13 @@ jobs: - name: run fuzz 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-* fuzz_write: runs-on: ubuntu-latest @@ -110,3 +117,10 @@ jobs: - name: run fuzz 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-*