Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pruning in CFL #110

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/cflite_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Once a day at midnight.
push:

permissions: read-all

Expand All @@ -25,6 +26,9 @@ jobs:
uses: google/clusterfuzzlite/actions/build_fuzzers@main
with:
sanitizer: coverage
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
- name: Run fuzzing tests
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@main
Expand All @@ -33,11 +37,13 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
minimize-crashes: true
mode: 'coverage'
parallel-fuzzing: true
report-unreproducible-crashes: true
storage-repo-branch-coverage: gh-pages
storage-repo-branch: cfl
storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/ligurio/lua-c-api-corpus
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3

# Corpus Pruning ("prune").
# Over time, redundant testcases will get introduced into your fuzzer's corpuses
Expand All @@ -62,8 +68,10 @@ jobs:
minimize-crashes: true
mode: 'prune'
output-sarif: true
parallel-fuzzing: true
report-unreproducible-crashes: true
storage-repo-branch-coverage: gh-pages
storage-repo-branch: cfl
storage-repo: https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/ligurio/lua-c-api-corpus
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
Loading