From 52470d5f60b33b700a2a7c89bc991573417e3a94 Mon Sep 17 00:00:00 2001 From: Gianluca Massera Date: Fri, 7 Aug 2020 11:11:16 +0100 Subject: [PATCH] Use gtimeout on Mac OS job to incrementally build up ccache --- .travis/macos/build.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis/macos/build.sh b/.travis/macos/build.sh index a83a9253b..a9d21979f 100755 --- a/.travis/macos/build.sh +++ b/.travis/macos/build.sh @@ -13,6 +13,12 @@ export CPPFLAGS="-I/usr/local/opt/llvm/include" mkdir build && cd build cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_QT_TRANSLATION=ON -DCITRA_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_FFMPEG_AUDIO_DECODER=ON -DENABLE_FFMPEG_VIDEO_DUMPER=ON -make -j4 +# make -j4 takes more than 50 minutes when there is no ccache available on Travis CI +# and when Travis CI timeouts a job after 50 minutes it won't store any ccache get so far. +# To avoid to be stuck forever with failing build, gtimeout will stop make command before +# Travis CI timeouts, and this will allow Travis CI to successfully store any ccache get so far, +# and iterating this process, the ccache will build up till the make command will succeed. +# 50 minutes == 3000 seconds; ~1000 seconds are needed by deps.sh; hence: +gtimeout 1500 make -j4 ctest -VV -C Release