Skip to content

Commit

Permalink
Merge pull request #288 from amirlivneh/coverage-report
Browse files Browse the repository at this point in the history
Generate periodic fuzzing coverage reports
  • Loading branch information
tatsuhiro-t authored Dec 31, 2024
2 parents 693af7e + 081fa36 commit dcec26f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/cflite_cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,20 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 600
mode: 'prune'
Coverage:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@v1
with:
language: c++
sanitizer: coverage
- name: Run Fuzzers
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 600
mode: 'coverage'
sanitizer: 'coverage'

0 comments on commit dcec26f

Please sign in to comment.