build,travis: reduce verbosity so Travis don't kill the job
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
This commit is contained in:
parent
dede62cf88
commit
0634247548
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue