From 4b3a8be6407bf4a7a87ea9518a2e89a8e7820fcb Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 24 Aug 2018 17:37:59 +0200 Subject: travis: allow cache to be saved when build takes too long Kill Ninja after 35 minutes to prevent Travis from cancelling the build due to time-out. This allows the cache to be saved, so the build can complete when it is attempted again. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 52aa8015f..27f50544e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,7 @@ before_script: - "./tools/setup.py" script: - "./tools/lint.py" +- bash -c "sleep 2100; pkill ninja" & - "./tools/build.py -j2" - "./tools/test.py $DENO_BUILD_PATH" before_deploy: | -- cgit v1.2.3