File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : ClusterFuzzLite cron tasks
2+ on :
3+ schedule :
4+ - cron : ' 0 0 * * *' # Once a day at midnight.
5+ permissions : read-all
6+ jobs :
7+ Pruning :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Build Fuzzers
11+ id : build
12+ uses : google/clusterfuzzlite/actions/build_fuzzers@v1
13+ with :
14+ language : python
15+ - name : Run Fuzzers
16+ id : run
17+ uses : google/clusterfuzzlite/actions/run_fuzzers@v1
18+ with :
19+ github-token : ${{ secrets.GITHUB_TOKEN }}
20+ fuzz-seconds : 600
21+ mode : ' prune'
22+ output-sarif : true
23+ Coverage :
24+ runs-on : ubuntu-latest
25+ steps :
26+ - name : Build Fuzzers
27+ id : build
28+ uses : google/clusterfuzzlite/actions/build_fuzzers@v1
29+ with :
30+ language : python
31+ sanitizer : coverage
32+ - name : Run Fuzzers
33+ id : run
34+ uses : google/clusterfuzzlite/actions/run_fuzzers@v1
35+ with :
36+ github-token : ${{ secrets.GITHUB_TOKEN }}
37+ fuzz-seconds : 600
38+ mode : ' coverage'
39+ sanitizer : ' coverage'
You can’t perform that action at this time.
0 commit comments