diff --git a/.github/workflows/fuzz-nightly.yml b/.github/workflows/fuzz-nightly.yml index 148ec99e7..a60cdc294 100644 --- a/.github/workflows/fuzz-nightly.yml +++ b/.github/workflows/fuzz-nightly.yml @@ -44,9 +44,23 @@ jobs: run: timeout -s SIGINT --preserve-status 10m make fuzz-rpc-server continue-on-error: true + - name: Archive crashers + uses: actions/upload-artifact@v2 + with: + name: crashers + path: test/fuzz/**/crashers + retention-days: 1 + + - name: Archive suppressions + uses: actions/upload-artifact@v2 + with: + name: suppressions + path: test/fuzz/**/suppressions + retention-days: 1 + - name: Set crashers count working-directory: test/fuzz - run: echo "::set-output name=crashers-count::$(find . -type d -name "crashers" | xargs -I % sh -c 'ls % | wc -l' | awk '{total += $1} END {print total}')" + run: echo "::set-output name=crashers-count::$(find . -type d -name 'crashers' | xargs -I % sh -c 'ls % | wc -l' | awk '{total += $1} END {print total}')" id: set-crashers-count outputs: