-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add timeout for target_experiment.py
#11972
Conversation
Script This PR ensures it won't be delayed by other steps. |
This should be able to capture timeout error from I suppose there is no point in re-trying a timeout error? |
'coverage', | ||
target_name, | ||
'-c', | ||
(f'timeout 30m coverage {target_name}; ret=$?; [ $ret -eq 124 ] ' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a comment for where 124 comes from?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
/gcbrun skip |
/gcbrun skip |
The CI failure is unrelated. |
Add a 3-hour timeout to
target_experiment.py
, which should be more than enough given fuzzing timeout is 30 minutes and most successful cloud builds finish in 2.5 hours empirically.