Skip to content

Commit

Permalink
ci: add CIFuzz Github action (libevent#1382)
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
Co-authored-by: Azat Khuzhin <[email protected]>
  • Loading branch information
DavidKorczynski and azat authored Nov 26, 2022
1 parent dfbb004 commit d8ecb88
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CIFuzz
on:
pull_request:
types:
- synchronize
- reopened
- opened
branches:
- master
push:
push:
branches:
- master
jobs:
Fuzzing:
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: 'libevent'
language: c++
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'libevent'
fuzz-seconds: 300
language: c++
- name: Upload Crash
uses: actions/upload-artifact@v3
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts

0 comments on commit d8ecb88

Please sign in to comment.