Skip to content

Commit fa1db33

Browse files
author
MarcoFalke
committed
travis: Only exit early if compilation took longer than 30 min
1 parent 5029e94 commit fa1db33

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
@@ -33,7 +33,7 @@ before_script:
3333
- set -o errexit; source .travis/test_05_before_script.sh
3434
script:
3535
- if [ $SECONDS -gt 1200 ]; then set +o errexit; echo "Travis early exit to cache current state"; false; else set -o errexit; source .travis/test_06_script_a.sh; fi
36-
- if [ $SECONDS -gt 1500 ]; then set +o errexit; echo "Travis early exit to cache current state"; false; else set -o errexit; source .travis/test_06_script_b.sh; fi
36+
- if [ $SECONDS -gt 1800 ]; then set +o errexit; echo "Travis early exit to cache current state"; false; else set -o errexit; source .travis/test_06_script_b.sh; fi
3737
after_script:
3838
- echo $TRAVIS_COMMIT_RANGE
3939
- echo $TRAVIS_COMMIT_LOG

0 commit comments

Comments
 (0)