From 81d021c771c6f8787affa8a66f475fd3d2795d03 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sun, 3 Aug 2014 17:51:18 +0200 Subject: [PATCH] Add 'set -e' to the Travis OSX script. This ensures that the script actually fails if the build didn't succeed. --- travis.osx.script.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/travis.osx.script.sh b/travis.osx.script.sh index 2fafa61bcf4..f7d9953f6b7 100755 --- a/travis.osx.script.sh +++ b/travis.osx.script.sh @@ -1,4 +1,9 @@ +set -e cd build ../configure -make tidy && make -j2 && make check-servo && make check-content && make check-ref-cpu +make tidy +make -j2 +make check-servo +make check-content +make check-ref-cpu WPTARGS="--processes=4" make check-wpt