diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-02-28 10:29:14 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-02-28 16:50:43 +0100 |
commit | ea1b2eb9768ee5db73dcd9408c726531e2605655 (patch) | |
tree | 48af2761d9ef7d89a5453dd2a6495779fa13d344 /.github/workflows/fuzz.yml | |
parent | 513b5387abb79731381cc075c96046427063c7b1 (diff) |
CIfuzz: switch off 'dry_run' mode
Follow-up from #4960: now make it fail if it detects problems.
Closes #4998
Diffstat (limited to '.github/workflows/fuzz.yml')
-rw-r--r-- | .github/workflows/fuzz.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 3a2ac2368..296acc797 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -8,17 +8,16 @@ jobs: uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: oss-fuzz-project-name: 'curl' - dry-run: true + dry-run: false - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'curl' fuzz-seconds: 600 - dry-run: true + dry-run: false - name: Upload Crash uses: actions/upload-artifact@v1 if: failure() with: name: artifacts path: ./out/artifacts - |