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

chore: fine tune fuzzing settings #2035

Merged
merged 1 commit into from
Feb 14, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/cflite_batch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
name: ClusterFuzzLite batch fuzzing
on:
schedule:
- cron: '0 14 * * *' # Run daily, hour chosen by fair dice roll
workflow_dispatch: # Manual trigger for testing
- cron: '0 6,8 * * *' # Run twice a day at low activity times
workflow_dispatch: # Manual trigger for testing
permissions: read-all
jobs:
BatchFuzzing:
Expand All @@ -28,7 +28,7 @@ jobs:
uses: google/clusterfuzzlite/actions/run_fuzzers@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 900 # 15min
fuzz-seconds: 3600 # 60min
mode: 'batch'
sanitizer: ${{ matrix.sanitizer }}
# Optional but recommended: For storing certain artifacts from fuzzing.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cflite_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: ClusterFuzzLite cron tasks
on:
schedule:
- cron: '0 16 * * *' # Once a day, after fuzzing run
- cron: '0 10 * * *' # Once a day, after fuzzing run
workflow_dispatch: # Manual trigger for testing

permissions: read-all
Expand Down