Skip to content

Commit 5d9cd9e

Browse files
committed
travis: Wait at most 30 minutes for base test
Sometimes travis gets slow and makes the builds spurious failure because of no output in 10 minutes. This commit increase Travis timing-out time at most 30 minutes before terminating the build.
1 parent a1eb60f commit 5d9cd9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ script:
9898
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
9999
- |
100100
if [ -z ${INTEGRATION} ]; then
101-
./ci/base-tests.sh && sleep 5
101+
travis_wait 30 ./ci/base-tests.sh && sleep 5
102102
else
103103
./ci/integration-tests.sh && sleep 5
104104
fi

0 commit comments

Comments
 (0)