Skip to content

Commit 66ce95a

Browse files
author
MarcoFalke
committed
Merge #15797: travis: Bump second timeout to 33 minutes, Add rationale
fa2dfbf travis: Bump second timeout to 33 minutes, Add rationale (MarcoFalke) Pull request description: People have been complaining on IRC about timeouts, but I don't think we can bump it much further. The tests take more than 15 minutes in some cases [1], so if there is less than 1000 seconds left to finish them we need to abort and save the cache. 🤷‍♂️. [1] https://travis-ci.org/bitcoin/bitcoin/jobs/518788414#L3568 ACKs for commit fa2dfb: practicalswift: utACK fa2dfbf fanquake: utACK fa2dfbf ⏰ Tree-SHA512: ae981731e574f34cc54145eec52c4bdee241943ef22a6fbdf3e14b8f36538b0ae4f83815fa6a2a5fe4b15a18a2f0c7898dca8ec435125f32d92fa8c19caf4272
2 parents 0e9cb2d + fa2dfbf commit 66ce95a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ script:
6464
- export CONTINUE=1
6565
- if [ $SECONDS -gt 1200 ]; then export CONTINUE=0; fi # Likely the depends build took very long
6666
- if [ $CONTINUE = "1" ]; then set -o errexit; source .travis/test_06_script_a.sh; else set +o errexit; echo "$CACHE_ERR_MSG"; false; fi
67-
- if [ $SECONDS -gt 1800 ]; then export CONTINUE=0; fi # Likely the build took very long
67+
- if [ $SECONDS -gt 2000 ]; then export CONTINUE=0; fi # Likely the build took very long; The tests take about 1000s, so we should abort if we have less than 50*60-1000=2000s left
6868
- if [ $CONTINUE = "1" ]; then set -o errexit; source .travis/test_06_script_b.sh; else set +o errexit; echo "$CACHE_ERR_MSG"; false; fi
6969
after_script:
7070
- echo $TRAVIS_COMMIT_RANGE

0 commit comments

Comments
 (0)