Skip to content

Commit 01069d9

Browse files
ci: bump build-and-test timeout 15m -> 30m
Track 2 has been timing out on every push since the ANTLR Postgres parser + vector support landed. The job now has to pull the larger pgvector/pgvector:pg16 image (used by the shared Testcontainers fixture for vector E2E tests), install cargo-tarpaulin, build the full .NET solution, run the Sync test matrix end-to-end against real Postgres + SQLite testcontainers, and finally run the Rust tarpaulin coverage pass — none of which fits in the original 15 minute budget. Recent runs (81dbd35 -> 876e616) all hit the cap and were killed mid-Sync.Core. 30 minutes restores headroom and matches the existing 20m budget on the LQL Extension Tests track.
1 parent 876e616 commit 01069d9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ jobs:
9191
build-and-test:
9292
name: Build + LQL / Migration / Sync Tests
9393
runs-on: ubuntu-latest
94-
timeout-minutes: 15
94+
# 15min was insufficient since the new ANTLR Postgres parser + vector
95+
# support landed: pgvector image pull, cargo-tarpaulin install, full
96+
# Sync test matrix, and the new Postgres E2E vector tests push the
97+
# job past 15 min consistently. 30 min gives realistic headroom.
98+
timeout-minutes: 30
9599
services:
96100
postgres:
97101
image: postgres:16

0 commit comments

Comments
 (0)