Corpus Pruning #561
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Corpus Pruning | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # Once a day at midnight. | |
permissions: read-all | |
jobs: | |
Pruning: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build Fuzzers | |
id: build | |
uses: google/clusterfuzzlite/actions/build_fuzzers@v1 | |
with: | |
language: rust | |
- name: Run Fuzzers | |
id: run | |
uses: google/clusterfuzzlite/actions/run_fuzzers@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
fuzz-seconds: 600 | |
mode: 'prune' | |
storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/IsaacMarovitz/pe-parser-fuzz.git | |
storage-repo-branch: main | |
storage-repo-branch-coverage: gh-pages | |
Coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build Fuzzers | |
id: build | |
uses: google/clusterfuzzlite/actions/build_fuzzers@v1 | |
with: | |
language: rust | |
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' | |
storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/IsaacMarovitz/pe-parser-fuzz.git | |
storage-repo-branch: main | |
storage-repo-branch-coverage: gh-pages |