From f3a32aeb3b3c348a5499dfb7f93b96b7e4eba3b3 Mon Sep 17 00:00:00 2001 From: Tsahi Zidenberg Date: Wed, 24 Apr 2024 19:45:12 -0600 Subject: [PATCH] ci: increase timeout for arbitrator --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d78c9b03c..0aab953fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -168,7 +168,7 @@ jobs: if: matrix.test-mode == 'stylus' run: | packages=`go list ./...` - stdbuf -oL gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 --no-color=false -- ./... -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -parallel=8 -tags=stylustest -run="TestProgram(Arbitrator|Long)" > >(stdbuf -oL tee full.log | grep -vE "INFO|seal") + stdbuf -oL gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 --no-color=false -- ./... -timeout 60m -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -parallel=8 -tags=stylustest -run="TestProgram(Arbitrator|Long)" > >(stdbuf -oL tee full.log | grep -vE "INFO|seal") - name: Archive detailed run log uses: actions/upload-artifact@v3