From 55dd56e52bd542c51a2665fd1e6dd864f9340dc7 Mon Sep 17 00:00:00 2001 From: Kazuyoshi Kato Date: Wed, 15 Jun 2022 20:44:50 +0000 Subject: [PATCH] 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 --- .github/workflows/fuzz.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 414377678..2bfff59f2 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -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'