Skip to content

Commit

Permalink
stop doing any fuzzing (#1247)
Browse files Browse the repository at this point in the history
The whole fuzzing pipeline is broken. Comment it out for now.
See #1186 and #1223

Signed-off-by: Miek Gieben <[email protected]>
  • Loading branch information
miekg authored Mar 22, 2021
1 parent 797f1f2 commit ad89e5b
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ad89e5b

Please sign in to comment.