From e9531d2a7ef63d2f99c9747e9404664d0996615a Mon Sep 17 00:00:00 2001 From: sgrogan Date: Sat, 7 Nov 2020 07:51:18 -0500 Subject: [PATCH] increase osx timeout limit --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a35c80b5b1..7c6018cb1c 100755 --- a/.travis.yml +++ b/.travis.yml @@ -339,7 +339,7 @@ script: cat $HOME/.ccache/ccache.conf ccache -z -s df -h - if [ "${TRAVIS_OS_NAME}" == "osx" ]; then export PATH="/usr/local/opt/ccacche/libexec:$PATH"; sudo gtimeout -s KILL 5400 make -j2; [ $? == 0 ] && echo "No timeout" || { ccache -s; return 0; } fi + if [ "${TRAVIS_OS_NAME}" == "osx" ]; then export PATH="/usr/local/opt/ccacche/libexec:$PATH"; sudo gtimeout -s KILL 7200 make -j2; [ $? == 0 ] && echo "No timeout" || { ccache -s; return 0; } fi if [ "${TRAVIS_OS_NAME}" == "linux" ]; then sudo timeout -k 175m 170m make -j2 install || true; fi sudo make -j2 install ccache -s