chore(.travis.yml): increase travis_wait timeout
By default, `travis_wait` kills the process after 20 minutes, so this could make test runs fail that actually would have succeeded before the change. Increase to maximum job runtime of 60 minutes.
This commit is contained in:
parent
16f28315ee
commit
07bb7d809b
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ script:
|
|||
$OPTIONS
|
||||
../src
|
||||
- make -j2
|
||||
- if [[ $TEST != OFF ]]; then yes "A" | travis_wait ctest -j2 --output-on-failure; fi
|
||||
- if [[ $TEST != OFF ]]; then yes "A" | travis_wait 60 ctest -j2 --output-on-failure; fi
|
||||
- |
|
||||
if [[ $TEST_LEANPKG_REGISTRY == ON ]]; then
|
||||
(cd ../packages
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue