CI: raise the job timeout to 120 minutes — the suite outgrew 60 - #572
Merged
Conversation
Two PRs were cancelled at 1h00m and reported as failures when nothing had failed: the serial phase alone now takes ~55 minutes, so the parallel phase runs last and gets cut mid-run. A run with no additions at all (PR #568) took 55m07s, which means any new tests exceeded the cap. This is a stop-gap so work can land. The durable fix is splitting the batches across parallel jobs so wall-clock stops tracking total test time - filed separately. Underworld development team with AI support from Claude Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two PRs were cancelled at exactly 1h00m and reported as failures when nothing had failed. Measured from the logs on 2026-08-15:
So the cap is the binding constraint, not the content: a run with no additions was already within five minutes of it, and three individual serial batches take 14–15 minutes each.
The failure mode is worse than slow CI, because a cancellation looks like a red X. #571's first timeout sent us hunting a test failure that did not exist, and the same would happen to anyone else adding tests.
This raises the cap to 120 so work can land. It is a stop-gap, and the comment in the workflow says so: the durable fix is splitting the batches across parallel jobs so wall-clock stops tracking total test time — filed separately.
Underworld development team with AI support from Claude Code