File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3939 # Use the matrix variable to set the runner, with 'ubuntu-latest' as the
4040 # default.
4141 runs-on : ${{ matrix.runner || 'ubuntu-latest' }}
42- timeout-minutes : 20
42+ timeout-minutes : 90
4343 strategy :
4444 fail-fast : false
4545 matrix :
@@ -99,11 +99,11 @@ jobs:
9999 if : matrix.type == 'tests'
100100 run : |
101101 go version
102- go test ${{ matrix.testflags }} -cpu 1,4 -timeout 7m ./...
102+ go test ${{ matrix.testflags }} -cpu 1,4 -timeout 60m -count 10000 -run ^Test/AggregatedClusterSuccess_SwitchBetweenLeafAndAggregate$ ./...
103103 cd "${GITHUB_WORKSPACE}"
104104 for MOD_FILE in $(find . -name 'go.mod' | grep -Ev '^\./go\.mod'); do
105105 pushd "$(dirname ${MOD_FILE})"
106- go test ${{ matrix.testflags }} -cpu 1,4 -timeout 2m ./...
106+ go test ${{ matrix.testflags }} -cpu 1,4 -timeout 60m -count 10000 -run ^Test/AggregatedClusterSuccess_SwitchBetweenLeafAndAggregate$ ./...
107107 popd
108108 done
109109
You can’t perform that action at this time.
0 commit comments