Skip to content

Commit a240a9d

Browse files
authored
Merge pull request #1993 from terrelln/cifuzz-dogfood
Enable oss-fuzz CIFuzz dogfood
2 parents 06a57cf + 4de6b80 commit a240a9d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CIFuzz
2+
on: [pull_request]
3+
jobs:
4+
Fuzzing:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Build Fuzzers
8+
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
9+
with:
10+
project-name: 'zstd'
11+
dry-run: true
12+
- name: Run Fuzzers
13+
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
14+
with:
15+
fuzz-time: 600
16+
dry-run: true
17+
- name: Upload Crash
18+
uses: actions/upload-artifact@v1
19+
if: failure()
20+
with:
21+
name: bug_report
22+
path: ./out/bug_report

0 commit comments

Comments
 (0)