From 93567a78045b5e59267602bf209948a23263eaf4 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Wed, 19 Nov 2025 19:57:57 +0000 Subject: [PATCH] hotfix(ci): bump container run timeout from 15s to 30s --- ci/internal/simple.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/internal/simple.go b/ci/internal/simple.go index 746795e2..d2d08827 100644 --- a/ci/internal/simple.go +++ b/ci/internal/simple.go @@ -17,7 +17,7 @@ import ( func ptrTo[T any](v T) *T { return &v } func simpleTest(ctx context.Context, env []string) error { - const timeout = 15 * time.Second + const timeout = 30 * time.Second ctx, cancel := context.WithTimeout(ctx, timeout) defer cancel()