-
Notifications
You must be signed in to change notification settings - Fork 5k
Increase timeouts for native AOT legs #116114
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
Conversation
Linux helix queues are getting backed up with 100+ minutes delays. 120 minute timeout is not enough.
Tagging subscribers to this area: @agocke, @MichalStrehovsky, @jkotas |
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.
Pull Request Overview
Increase timeout limits for native AOT pipeline legs to mitigate long Linux helix queue delays.
- Updated
timeoutInMinutes
from 120 to 180 for NativeAOT test jobs. - Both default and innerloop NativeAOT jobs now have a 3-hour timeout.
- name: timeoutPerTestCollectionInMinutes | ||
value: 180 | ||
jobParameters: | ||
timeoutInMinutes: 120 | ||
timeoutInMinutes: 180 |
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.
[nitpick] Consider extracting the repeated timeout value into a template variable or parameter to avoid duplication and simplify future adjustments.
Copilot uses AI. Check for mistakes.
@@ -614,7 +614,7 @@ extends: | |||
value: 180 | |||
jobParameters: | |||
testGroup: innerloop | |||
timeoutInMinutes: 120 | |||
timeoutInMinutes: 180 |
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.
[nitpick] This timeout value is duplicated; using a shared variable would reduce repetition and make updates easier.
timeoutInMinutes: 180 | |
timeoutInMinutes: ${{ variables['timeoutPerTestCollectionInMinutes'] }} |
Copilot uses AI. Check for mistakes.
cc @dotnet/runtime-infrastructure |
/ba-g timeouts |
Linux helix queues are getting backed up with 100+ minutes delays. 120 minute timeout is not enough.