Skip to content

Commit e34b244

Browse files
committed
modify yaml
1 parent 629ef39 commit e34b244

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
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

0 commit comments

Comments
 (0)