summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-02-28 10:29:14 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-02-28 16:50:43 +0100
commitea1b2eb9768ee5db73dcd9408c726531e2605655 (patch)
tree48af2761d9ef7d89a5453dd2a6495779fa13d344
parent513b5387abb79731381cc075c96046427063c7b1 (diff)
downloadcurl-ea1b2eb9768ee5db73dcd9408c726531e2605655.tar.gz
CIfuzz: switch off 'dry_run' mode
Follow-up from #4960: now make it fail if it detects problems. Closes #4998
-rw-r--r--.github/workflows/fuzz.yml5
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
-