ci: raise test timeout 20m → 30m; update comments (mc#1099)
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 24s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 38s
CI / Detect changes (pull_request) Successful in 1m12s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 32s
E2E API Smoke Test / detect-changes (pull_request) Successful in 1m39s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Successful in 25s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 1m49s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 22s
qa-review / approved (pull_request) Failing after 34s
security-review / approved (pull_request) Failing after 24s
gate-check-v3 / gate-check (pull_request) Successful in 50s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 1m17s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m28s
sop-checklist / all-items-acked (pull_request) Successful in 23s
sop-tier-check / tier-check (pull_request) Successful in 20s
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 1m44s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Successful in 2m44s
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Successful in 2m35s
lint-mask-pr-atomicity / lint-mask-pr-atomicity (pull_request) Successful in 2m55s
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Successful in 2m36s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 8s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 13s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 17s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 8s
CI / Python Lint & Test (pull_request) Successful in 7m59s
CI / Platform (Go) (pull_request) Failing after 18m33s
CI / Canvas (Next.js) (pull_request) Successful in 18m44s
CI / all-required (pull_request) Failing after 18m33s
CI / Canvas Deploy Reminder (pull_request) Successful in 5s

This commit is contained in:
2026-05-15 10:02:27 +00:00
parent 31f718b04e
commit 08e148ceb1
+12 -12
View File
@@ -145,11 +145,11 @@ jobs:
# the diagnostic step with its own continue-on-error: true (line 203).
# Flip confirmed by CI / Platform (Go) status = success on main HEAD 363905d3.
continue-on-error: false
# Job-level ceiling. The go test step below runs with a per-step 20m timeout;
# this cap catches any step that leaks past that. Set well above 20m so
# the per-step timeout is the active constraint. Raised from 15m to 50m
# to account for golangci-lint taking ~10m on cold runners (--no-config)
# plus ~12m for test suite on cold runner (mc#1099).
# Job-level ceiling. The go test step below runs with a per-step 30m timeout;
# this cap catches any step that leaks past that. Set well above 30m so
# the per-step timeout is the active constraint. Raised to 50m
# to account for golangci-lint ~10m on cold runner (--no-config) plus
# test suite ~19m on cold runner (mc#1099).
timeout-minutes: 50
defaults:
run:
@@ -198,13 +198,13 @@ 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 20m 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.
# mc#1099: raised from 10m → 15m → 20m. Cold runner: golangci-lint ~10m
# + test suite ~8-12m = up to 22m total. 15m was still too tight (PR #1151
# Platform (Go) failed at 18m on a very-cold runner). 20m gives headroom.
run: go test -race -timeout 20m -coverprofile=coverage.out ./...
# full ./... suite with race detection + coverage. A 30m per-step timeout
# lets the suite complete on cold cache (~19m observed) while failing
# cleanly instead of OOM-killing. The job-level timeout (50m) is a
# backstop. mc#1099: raised 10m → 15m → 20m → 30m. Cold runner:
# golangci-lint ~10m + test suite ~19m = ~29m total. 20m was too tight
# (PR #1151 failed at 19m5s with golangci-lint ~10m + test ~19m).
run: go test -race -timeout 30m -coverprofile=coverage.out ./...
- if: always()
name: Per-file coverage report