Skip to content

Commit 52e5708

Browse files
committed
fix(ci): bump await-tests job timeout to 90 min (v0.5.879)
v0.5.876 bumped the bash `deadline` to 90 * 60 but missed the GitHub Actions job-level `timeout-minutes: 60`. v0.5.878 hit that 60-min job timeout 2 minutes before macOS doc-tests finished green. Bring the job timeout up to 90 to match. Documented the lockstep relationship so future bumps move both.
1 parent c410e2e commit 52e5708

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release-packages.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
# ---------------------------------------------------------------------------
2828
await-tests:
2929
runs-on: ubuntu-latest
30-
timeout-minutes: 60
30+
# Job-level timeout must match the bash `deadline=$(( SECONDS + 90 * 60 ))`
31+
# below. v0.5.876 bumped the bash deadline to 90 but missed this — the
32+
# job got cancelled at the 60-min wall on v0.5.878 even though macOS
33+
# doc-tests succeeded 2 minutes later. Both must move together.
34+
timeout-minutes: 90
3135
steps:
3236
- name: Wait for Tests + Simulator Tests (iOS) to pass
3337
env:

0 commit comments

Comments
 (0)