From 23973bd3a0291d1a288dc3b2c8325dd6d37fe6f5 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Thu, 5 Sep 2024 10:50:34 +0200 Subject: [PATCH] build: increase go test timeout (#30398) This increases the timeout for the go tests on ci, this should prevent travis from erroring. see: https://app.travis-ci.com/github/ethereum/go-ethereum/jobs/625803693 --- build/ci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci.go b/build/ci.go index bdc89082e7..2932d2c9ce 100644 --- a/build/ci.go +++ b/build/ci.go @@ -304,7 +304,7 @@ func doTest(cmdline []string) { gotest := tc.Go("test") // CI needs a bit more time for the statetests (default 10m). - gotest.Args = append(gotest.Args, "-timeout=20m") + gotest.Args = append(gotest.Args, "-timeout=30m") // Enable CKZG backend in CI. gotest.Args = append(gotest.Args, "-tags=ckzg")