File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 66 pull_request :
77 branches :
88 - " **"
9+ workflow_dispatch :
10+ inputs :
11+ duration :
12+ description : ' Duration of the fuzzing run in seconds'
13+ required : true
14+ default : " 60"
15+ type : string
16+
917
1018jobs :
1119 fuzzing :
2432 - name : Build
2533 run : ./fuzzing/build.sh
2634
27- - name : Run fuzzer for 1 minute
28- run : ./fuzzing/run.sh 60
35+ - name : Run fuzzer
36+ run : ./fuzzing/run.sh ${{ github.event.inputs.duration }}
2937
3038 - name : Log
3139 if : ${{ always() }}
Original file line number Diff line number Diff line change @@ -10,6 +10,5 @@ export ASAN_OPTIONS=detect_leaks=1
1010
1111rm -f fuzz-* .log
1212
13- echo " Run fuzzer for ${1:- 30} seconds"
14- ./fuzzer -timeout=0.1 -report_slow_units=0.01 -max_total_time=${1:- 30} -max_len=1000 -rss_limit_mb=4096 -use_value_profile=1 -dict=sample_dict.txt -artifact_prefix=results/ -jobs=4 -workers=4 -reload=0 corpus
15- # ./fuzzer -timeout=0.1 -report_slow_units=0.01 -max_total_time=${1:-30} -max_len=1000 -rss_limit_mb=4096 -use_value_profile=1 -dict=sample_dict.txt -artifact_prefix=results/ -reload=0 corpus
13+ echo " Run fuzzer for ${1:- 60} seconds"
14+ ./fuzzer -timeout=0.1 -report_slow_units=0.01 -max_total_time=${1:- 60} -max_len=1000 -rss_limit_mb=4096 -use_value_profile=1 -dict=sample_dict.txt -artifact_prefix=results/ -jobs=4 -workers=4 -reload=0 corpus
You can’t perform that action at this time.
0 commit comments