Skip to content

Commit

Permalink
ci(fuzz): add oss-fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Aug 28, 2024
1 parent 378b69b commit 8c60edc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: fuzz
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'hdf5'
sanitizer: 'memory'
dry-run: false
keep-unaffected-fuzz-targets: true
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'hdf5'
fuzz-seconds: 600
output-sarif: true
sanitizer: 'memory'
dry-run: false

0 comments on commit 8c60edc

Please sign in to comment.