Commit 5ad1961
committed
ci: Fix integration test timeouts with bounded nextest limit and job timeout
The integration CI jobs were hitting GitHub's 6-hour job limit, which
caused silent cancellation rather than a real test failure. Two issues
combined to cause this:
1. nextest's integration profile had terminate-after = 60, meaning a
single hung test could run for 1200 × 60 = 72 000 s (20 h) before
nextest force-killed it, far exceeding the 6-hour GHA limit.
2. The integration job had no explicit timeout-minutes, so a stalled
job wasn't surfaced as a clear timeout failure.
Fix both: drop terminate-after to 1 (each test gets exactly 20 min before
nextest terminates it, which is generous for VM boot + test execution), and
add timeout-minutes: 90 to the integration job so any build or runner hang
fails cleanly rather than silently burning 6 hours.
Assisted-by: OpenCode (Claude Sonnet 4.6)
Signed-off-by: Colin Walters <walters@verbum.org>1 parent c8fa590 commit 5ad1961
2 files changed
Lines changed: 18 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
27 | 31 | | |
28 | 32 | | |
29 | 33 | | |
| |||
44 | 48 | | |
45 | 49 | | |
46 | 50 | | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
96 | 101 | | |
97 | 102 | | |
98 | 103 | | |
| |||
0 commit comments