From 07997dd2eafb0cb1a72913bf4c3ad1996a1aeebe Mon Sep 17 00:00:00 2001 From: Erwin Fiten Date: Fri, 19 Jun 2026 10:41:59 +0200 Subject: [PATCH] @ ci: bump Go test timeout 15m -> 20m (server + ingestor) The server Go suite runs ~13-15m against a 15m ceiling and has intermittently hit `panic: test timed out after 15m0s` (cmd/server, e.g. db_test.go) on slower runners, producing false-red CI that a plain rerun clears. Bump both `go test` invocations to 20m to give headroom; no test or application changes. Co-Authored-By: Erwin Fiten Co-Authored-By: Claude Opus 4.8 (1M context) @ --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c4c468c4..af16990f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -56,7 +56,7 @@ jobs: go build . # -race gates PR #1208's atomic.Pointer migration: the race-detector # is what makes path_inspect_atomic_race_test.go actually assert. - go test -timeout 15m -race -coverprofile=server-coverage.out ./... 2>&1 | tee server-test.log + go test -timeout 20m -race -coverprofile=server-coverage.out ./... 2>&1 | tee server-test.log echo "--- Go Server Coverage ---" go tool cover -func=server-coverage.out | tail -1 @@ -65,7 +65,7 @@ jobs: set -e -o pipefail cd cmd/ingestor go build . - go test -timeout 15m -coverprofile=ingestor-coverage.out ./... 2>&1 | tee ingestor-test.log + go test -timeout 20m -coverprofile=ingestor-coverage.out ./... 2>&1 | tee ingestor-test.log echo "--- Go Ingestor Coverage ---" go tool cover -func=ingestor-coverage.out | tail -1