From 3ab76cf9cb982ca3d08b5d9e8106e778ffa12693 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Thu, 14 Apr 2022 14:48:44 +0300 Subject: [PATCH] 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 ``` --- .circleci/config.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 717a6260f..015be1fc3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,9 @@ jobs: - run: git submodule sync - run: git submodule update --init - gomod - - run: go test -v -race ./... + - run: + command: go test -v -race ./... + no_output_timeout: 15m test_1_17: working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go @@ -57,7 +59,9 @@ jobs: - run: git submodule sync - run: git submodule update --init - gomod - - run: go test -v -race ./... + - run: + command: go test -v -race ./... + no_output_timeout: 15m test_1_18: working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go @@ -67,7 +71,9 @@ jobs: - run: git submodule sync - run: git submodule update --init - gomod - - run: go test -v -race ./... + - run: + command: go test -v -race ./... + no_output_timeout: 15m build_cli: working_directory: /home/circleci/go/src/github.com/nspcc-dev/neo-go