From 0634247548c798640a102503f6595d8fab43c69c Mon Sep 17 00:00:00 2001 From: Etienne Champetier Date: Sun, 13 Aug 2017 16:24:38 -0700 Subject: [PATCH] build,travis: reduce verbosity so Travis don't kill the job Signed-off-by: Etienne Champetier --- .travis_do.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis_do.sh b/.travis_do.sh index cabb32380f..aa56902055 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