Browse Source

.github: rename crashers output (fuzz-nightly-test) (#5993)

pull/6085/head
Anton Kaliaev 4 years ago
parent
commit
0f58a8470a
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      .github/workflows/fuzz-nightly.yml

+ 3
- 2
.github/workflows/fuzz-nightly.yml View File

@ -43,8 +43,9 @@ jobs:
working-directory: test/fuzz 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 id: set-crashers-count
outputs:
crashers_count: ${{ steps.set-crashers-count.outputs.crashers-count }}
outputs:
crashers-count: ${{ steps.set-crashers-count.outputs.crashers-count }}
fuzz-nightly-fail: fuzz-nightly-fail:
needs: fuzz-nightly-test needs: fuzz-nightly-test


Loading…
Cancel
Save