mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 09:29:38 +00:00
ci: increase output waiting timeout for CircleCI test jobs
Problem - failing CircleCI test jobs: ``` go test -v -race ./... Too long with no output (exceeded 10m0s): context deadline exceeded ```
This commit is contained in:
parent
6ff11baa1b
commit
3ab76cf9cb
1 changed files with 9 additions and 3 deletions
|
@ -47,7 +47,9 @@ jobs:
|
||||||
- run: git submodule sync
|
- run: git submodule sync
|
||||||
- run: git submodule update --init
|
- run: git submodule update --init
|
||||||
- gomod
|
- gomod
|
||||||
- run: go test -v -race ./...
|
- run:
|
||||||
|
command: go test -v -race ./...
|
||||||
|
no_output_timeout: 15m
|
||||||
|
|
||||||
test_1_17:
|
test_1_17:
|
||||||
working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go
|
working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go
|
||||||
|
@ -57,7 +59,9 @@ jobs:
|
||||||
- run: git submodule sync
|
- run: git submodule sync
|
||||||
- run: git submodule update --init
|
- run: git submodule update --init
|
||||||
- gomod
|
- gomod
|
||||||
- run: go test -v -race ./...
|
- run:
|
||||||
|
command: go test -v -race ./...
|
||||||
|
no_output_timeout: 15m
|
||||||
|
|
||||||
test_1_18:
|
test_1_18:
|
||||||
working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go
|
working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go
|
||||||
|
@ -67,7 +71,9 @@ jobs:
|
||||||
- run: git submodule sync
|
- run: git submodule sync
|
||||||
- run: git submodule update --init
|
- run: git submodule update --init
|
||||||
- gomod
|
- gomod
|
||||||
- run: go test -v -race ./...
|
- run:
|
||||||
|
command: go test -v -race ./...
|
||||||
|
no_output_timeout: 15m
|
||||||
|
|
||||||
build_cli:
|
build_cli:
|
||||||
working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go
|
working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go
|
||||||
|
|
Loading…
Reference in a new issue