File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 12
12
- ' **'
13
13
pull_request :
14
14
schedule :
15
- - cron : ' 0 2 * * *' # run at 2 AM UTC
15
+ - cron : ' 5 2 * * *' # run at 2:05 AM UTC
16
16
jobs :
17
17
cmake-linux :
18
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 12
12
- ' **'
13
13
pull_request :
14
14
schedule :
15
- - cron : ' 15 2 * * *' # run at 2:15 AM UTC
15
+ - cron : ' 0 2 * * *' # run at 2:00 AM UTC
16
16
jobs :
17
17
clang-fuzzing :
18
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -22,28 +22,28 @@ exit_compile=$?
22
22
23
23
24
24
# Start each executable in the background and save their process IDs
25
- ./test_fuzzing_add -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
25
+ ./test_fuzzing_add -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
26
26
pid_add=$!
27
27
28
- ./test_fuzzing_sub -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
28
+ ./test_fuzzing_sub -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
29
29
pid_sub=$!
30
30
31
- ./test_fuzzing_mul -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
31
+ ./test_fuzzing_mul -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
32
32
pid_mul=$!
33
33
34
- ./test_fuzzing_div -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
34
+ ./test_fuzzing_div -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
35
35
pid_div=$!
36
36
37
- ./test_fuzzing_sdiv -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
37
+ ./test_fuzzing_sdiv -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
38
38
pid_sdiv=$!
39
39
40
- ./test_fuzzing_sqrt -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
40
+ ./test_fuzzing_sqrt -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
41
41
pid_sqrt=$!
42
42
43
- ./test_fuzzing_powm -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
43
+ ./test_fuzzing_powm -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
44
44
pid_powm=$!
45
45
46
- ./test_fuzzing_prime -max_total_time=600 -max_len=34 -verbosity=0 -close_fd_mask=3 &
46
+ ./test_fuzzing_prime -max_total_time=900 -max_len=34 -verbosity=0 -close_fd_mask=3 &
47
47
pid_prime=$!
48
48
49
49
You can’t perform that action at this time.
0 commit comments