mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
ci: bump retry time from 10 to 15 minutes (reduce false positives for slow dependency installations on the CI)
This commit is contained in:
parent
e89839c845
commit
2b0af31bf9
19 changed files with 23 additions and 23 deletions
|
@ -22,7 +22,7 @@ fn main() {
|
|||
fp.skip_executable()
|
||||
fp.limit_free_args_to_at_least(1)!
|
||||
context.show_help = fp.bool('help', `h`, false, 'Show this help screen.')
|
||||
context.timeout = fp.float('timeout', `t`, 600.0, 'Timeout in seconds (for all retries). Default: 600.0 seconds (10 minutes).') * time.second
|
||||
context.timeout = fp.float('timeout', `t`, 900.0, 'Timeout in seconds (for all retries). Default: 900.0 seconds (15 minutes).') * time.second
|
||||
context.delay = fp.float('delay', `d`, 1.0, 'Delay between each retry in seconds. Default: 1.0 second.') * time.second
|
||||
context.retries = fp.int('retries', `r`, 10, 'Maximum number of retries. Default: 10.')
|
||||
if context.show_help {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue