chore: fine tune fuzzing settings

This commit is contained in:
sudden6 2022-02-14 13:54:21 +01:00
parent 25216f86e7
commit 4d79001991
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
2 changed files with 4 additions and 4 deletions

View File

@ -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:
@ -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.

View File

@ -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