Make CI Fuzz optional

Until we merge cncf/cncf-fuzzing into this repository (see #7066),
we should keep this step optional.

Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
This commit is contained in:
Kazuyoshi Kato 2022-06-15 20:44:50 +00:00
parent 8aa3459459
commit 55dd56e52b

View File

@ -12,15 +12,17 @@ jobs:
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'containerd'
dry-run: false
dry-run: true
language: go
continue-on-error: true
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'containerd'
fuzz-seconds: 300
dry-run: false
dry-run: true
language: go
continue-on-error: true
- name: Upload Crash
uses: actions/upload-artifact@v1
if: failure() && steps.build.outcome == 'success'