Skip to content

Commit 58afc2b

Browse files
committed
fix(ci): increase test timeout to 25 minutes
Tests were timing out after 15 minutes when running in parallel mode. Most of the time is spent building dependencies (swift-syntax, postgres-nio, etc.) on first run or cache miss. Changes: - Increase timeout from 15m to 25m - Keep --parallel flag (SnapshotTests already have .serialized trait) Note: Build time will improve once cache is established and Package.swift stabilizes.
1 parent 9acee8f commit 58afc2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Build and test
4949
run: swift test --parallel
50-
timeout-minutes: 15
50+
timeout-minutes: 25
5151

5252
linux:
5353
name: Linux (Swift ${{ matrix.swift }})
@@ -78,7 +78,7 @@ jobs:
7878
7979
- name: Build and test
8080
run: swift test --parallel
81-
timeout-minutes: 15
81+
timeout-minutes: 25
8282

8383
documentation:
8484
name: Documentation

0 commit comments

Comments
 (0)