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 <miek@miek.nl>
This commit is contained in:
Miek Gieben 2021-03-22 15:47:47 +01:00 committed by GitHub
parent 797f1f2953
commit ad89e5bc70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 28 deletions

View File

@ -1,28 +1,28 @@
name: CIFuzz #name: CIFuzz
on: #on:
pull_request: # pull_request:
branches: # branches:
- master # - master
paths: # paths:
- '**.go' # - '**.go'
jobs: #jobs:
Fuzzing: # Fuzzing:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- name: Build Fuzzers # - name: Build Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master # uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with: # with:
oss-fuzz-project-name: 'go-dns' # oss-fuzz-project-name: 'go-dns'
dry-run: false # dry-run: false
- name: Run Fuzzers # - name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master # uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with: # with:
oss-fuzz-project-name: 'go-dns' # oss-fuzz-project-name: 'go-dns'
fuzz-seconds: 300 # fuzz-seconds: 300
dry-run: false # dry-run: false
- name: Upload Crash # - name: Upload Crash
uses: actions/upload-artifact@v1 # uses: actions/upload-artifact@v1
if: failure() # if: failure()
with: # with:
name: artifacts # name: artifacts
path: ./out/artifacts # path: ./out/artifacts