infra(ci): raise test step timeout 10m → 15m for cold runner headroom (mc#1099)
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Waiting to run
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Waiting to run
lint-mask-pr-atomicity / lint-mask-pr-atomicity (pull_request) Waiting to run
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Waiting to run
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Waiting to run
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 44s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 41s
CI / Detect changes (pull_request) Successful in 1m37s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 33s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 1m49s
E2E API Smoke Test / detect-changes (pull_request) Successful in 1m52s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 35s
qa-review / approved (pull_request) Failing after 59s
security-review / approved (pull_request) Failing after 57s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m33s
sop-checklist / all-items-acked (pull_request) Successful in 30s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 1m25s
gate-check-v3 / gate-check (pull_request) Successful in 1m27s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 9s
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 1m53s
sop-tier-check / tier-check (pull_request) Successful in 33s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 10s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 12s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 10s
CI / Python Lint & Test (pull_request) Successful in 7m59s
CI / Canvas (Next.js) (pull_request) Successful in 17m11s
CI / Canvas Deploy Reminder (pull_request) Successful in 18s
CI / Platform (Go) (pull_request) Failing after 17m38s
CI / all-required (pull_request) Failing after 17m2s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Waiting to run
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Waiting to run
lint-mask-pr-atomicity / lint-mask-pr-atomicity (pull_request) Waiting to run
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Waiting to run
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Waiting to run
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 44s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 41s
CI / Detect changes (pull_request) Successful in 1m37s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 33s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 1m49s
E2E API Smoke Test / detect-changes (pull_request) Successful in 1m52s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 35s
qa-review / approved (pull_request) Failing after 59s
security-review / approved (pull_request) Failing after 57s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m33s
sop-checklist / all-items-acked (pull_request) Successful in 30s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 1m25s
gate-check-v3 / gate-check (pull_request) Successful in 1m27s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 9s
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 1m53s
sop-tier-check / tier-check (pull_request) Successful in 33s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 10s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 12s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 10s
CI / Python Lint & Test (pull_request) Successful in 7m59s
CI / Canvas (Next.js) (pull_request) Successful in 17m11s
CI / Canvas Deploy Reminder (pull_request) Successful in 18s
CI / Platform (Go) (pull_request) Failing after 17m38s
CI / all-required (pull_request) Failing after 17m2s
golangci-lint --no-config --timeout 10m now passes on PR #1151, but the go test -race -timeout 10m step hits its ceiling immediately after on very-cold runners (~20m for lint + 10m for test = job fails at 30m). Raising the test step timeout to 15m gives sufficient headroom for the cold-cache race-enabled suite while staying well within the 50m job ceiling. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -198,10 +198,12 @@ jobs:
|
||||
- if: always()
|
||||
name: Run tests with race detection and coverage
|
||||
# Explicit timeout: cold runner cache causes OOM kills at ~4m39s on the
|
||||
# full ./... suite with race detection + coverage. A 10m per-step timeout
|
||||
# lets the suite complete on cold cache (~5-7m) while failing cleanly
|
||||
# full ./... suite with race detection + coverage. A 15m per-step timeout
|
||||
# lets the suite complete on cold cache (~5-12m) while failing cleanly
|
||||
# instead of OOM-killing. The job-level timeout (50m) is a backstop.
|
||||
run: go test -race -timeout 10m -coverprofile=coverage.out ./...
|
||||
# mc#1099: raised from 10m to 15m — cold runner test suite consistently
|
||||
# hits 10m ceiling after golangci-lint ~20m on very-cold runner (PR #1151).
|
||||
run: go test -race -timeout 15m -coverprofile=coverage.out ./...
|
||||
|
||||
- if: always()
|
||||
name: Per-file coverage report
|
||||
|
||||
Reference in New Issue
Block a user