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 10:29:14 +0100
commit624a83e2ffa83a58538589ffc35577cc2a116f7c (patch)
treec80f86db4cfad14235ce5fe7bfa8ae3874d75288
parent1f114be62621ba756d7c0f8c96eb35505a4a020b (diff)
downloadcurl-bagder/cifuzz-for-real.tar.gz
CIfuzz: switch off 'dry_run' modebagder/cifuzz-for-real
Follow-up from #4960: now make it fail if it detects problems.
-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
-