Skip to content

Commit 1d2da67

Browse files
authored
Prefix make jobs with travis_wait (#1378)
* Prefix make with travis_wait to prevent it getting killed for producing no output * Extend travis_wait to 30mins for the windows build * Trying 45 mins wait time * Increase travis_wait time to 45 minutes for linux builds as well
1 parent 0dc291d commit 1d2da67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- COMMON_FLAGS="DYNAMIC_ARCH=1 TARGET=NEHALEM NUM_THREADS=32"
1818
script:
1919
- set -e
20-
- make QUIET_MAKE=1 $COMMON_FLAGS $BTYPE
20+
- travis_wait 45 make QUIET_MAKE=1 $COMMON_FLAGS $BTYPE
2121
- make -C test $COMMON_FLAGS $BTYPE
2222
- make -C ctest $COMMON_FLAGS $BTYPE
2323
- make -C utest $COMMON_FLAGS $BTYPE
@@ -67,7 +67,7 @@ jobs:
6767
- gfortran-mingw-w64-x86-64
6868
before_script: *common-before
6969
script:
70-
- make QUIET_MAKE=1 $COMMON_FLAGS $BTYPE
70+
- travis_wait 45 make QUIET_MAKE=1 $COMMON_FLAGS $BTYPE
7171
env:
7272
- TARGET_BOX=WIN64
7373
- BTYPE="BINARY=64 HOSTCC=gcc CC=x86_64-w64-mingw32-gcc FC=x86_64-w64-mingw32-gfortran"

0 commit comments

Comments
 (0)