From ad89e5bc70f9966235e8fcae987f873f97879c7c Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Mon, 22 Mar 2021 15:47:47 +0100 Subject: [PATCH] stop doing any fuzzing (#1247) The whole fuzzing pipeline is broken. Comment it out for now. See #1186 and #1223 Signed-off-by: Miek Gieben --- .github/workflows/cifuzz.yml | 56 ++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 2188e408..1a03dcc8 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -1,28 +1,28 @@ -name: CIFuzz -on: - pull_request: - branches: - - master - paths: - - '**.go' -jobs: - Fuzzing: - runs-on: ubuntu-latest - steps: - - name: Build Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'go-dns' - dry-run: false - - name: Run Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'go-dns' - fuzz-seconds: 300 - dry-run: false - - name: Upload Crash - uses: actions/upload-artifact@v1 - if: failure() - with: - name: artifacts - path: ./out/artifacts +#name: CIFuzz +#on: +# pull_request: +# branches: +# - master +# paths: +# - '**.go' +#jobs: +# Fuzzing: +# runs-on: ubuntu-latest +# steps: +# - name: Build Fuzzers +# uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master +# with: +# oss-fuzz-project-name: 'go-dns' +# dry-run: false +# - name: Run Fuzzers +# uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master +# with: +# oss-fuzz-project-name: 'go-dns' +# fuzz-seconds: 300 +# dry-run: false +# - name: Upload Crash +# uses: actions/upload-artifact@v1 +# if: failure() +# with: +# name: artifacts +# path: ./out/artifacts