From 7ec1b3dc8f950dbecb9d870d5765de8b1868df1e Mon Sep 17 00:00:00 2001 From: Etienne Champetier Date: Thu, 17 Aug 2017 16:48:12 -0700 Subject: [PATCH] build,travis: fail Travis test when compilation fail Signed-off-by: Etienne Champetier --- .travis_do.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis_do.sh b/.travis_do.sh index af82262f5..2fcb8923f 100755 --- a/.travis_do.sh +++ b/.travis_do.sh @@ -118,7 +118,7 @@ EOF # 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 + exec_status '^ERROR' make "package/$pkg_name/compile" -j3 || RET=1 echo_blue "=== $pkg_name: compile test done"