Skip to content
This repository was archived by the owner on Mar 10, 2018. It is now read-only.

Commit 0dbb14c

Browse files
committed
.travis.yml Raplace travis_wait with bg sleep + echo
1. travis_wait doesn't show output while processing 2. it doesn't show it at all when timeout occure `travis_wait` choice is to not disrupt logs, but we are not parsing them. so that's ok References: travis-ci/travis-ci#8575 travis-ci/travis-ci#5716 travis-ci/travis-ci#3358
1 parent db505f5 commit 0dbb14c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
# chains
88
- SCRIPT=./images/build-fullnode-btcd.sh
99
TEST=./images/run-fullnode-btcd.sh --version
10-
- SCRIPT="travis_wait 60 ./images/fullnode/build-parity.sh"
10+
- SCRIPT=./images/fullnode/build-parity.sh
1111
TEST=
1212
# markets
1313
#cyber-markets images are assembled in CircleCI
@@ -23,6 +23,9 @@ services:
2323
- docker
2424

2525
script:
26+
# ping stdout every 9 minutes or Travis kills build
27+
# https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received
28+
- while sleep 9m; do echo "=====[ $SECONDS seconds still running ]====="; done &
2629
- $SCRIPT
2730

2831
after_script:

0 commit comments

Comments
 (0)