From: Etienne Champetier Date: Sun, 13 Aug 2017 23:24:38 +0000 (-0700) Subject: build,travis: reduce verbosity so Travis don't kill the job X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=0634247548c798640a102503f6595d8fab43c69c;p=openwrt-packages.git build,travis: reduce verbosity so Travis don't kill the job Signed-off-by: Etienne Champetier --- diff --git a/.travis_do.sh b/.travis_do.sh index cabb32380..aa5690205 100755 --- a/.travis_do.sh +++ b/.travis_do.sh @@ -111,7 +111,9 @@ EOF pkg_name=$(echo "$pkg_dir" | awk -F/ '{ print $NF }') echo_blue "=== $pkg_name: Starting compile test" - exec_status '^ERROR' make "package/$pkg_name/compile" V=s -j3 + # we can't enable verbose built else we often hit Travis limits + # on log size and the job get killed + exec_status '^ERROR' make "package/$pkg_name/compile" -j3 echo_blue "=== $pkg_name: compile test done" done