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
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