From c3d2f68c0576d168103107fa5b6460899db258ba Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Wed, 27 Jan 2021 11:35:48 +0400 Subject: [PATCH] .github: archive crashers and fix set-crashers-count step (#5992) --- .github/workflows/fuzz-nightly.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/fuzz-nightly.yml b/.github/workflows/fuzz-nightly.yml index 515e44336..5902c7440 100644 --- a/.github/workflows/fuzz-nightly.yml +++ b/.github/workflows/fuzz-nightly.yml @@ -39,9 +39,23 @@ jobs: working-directory: test/fuzz run: timeout 10m make fuzz-rpc-server + - 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: