From f4e9e6f062c83385e38c7c4ad20992be99a4ff15 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sun, 16 Aug 2015 16:01:03 +0100 Subject: [PATCH] CI build does not fail when tests fail. Fix #1527 --- ci_build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci_build.sh b/ci_build.sh index 8b206118..32496c58 100755 --- a/ci_build.sh +++ b/ci_build.sh @@ -9,8 +9,7 @@ if [ $BUILD_TYPE == "default" ]; then if [ $TRAVIS_OS_NAME != "osx" ] ; then sudo ldconfig ; fi ) # Build and check this project - ./autogen.sh && ./configure --with-libsodium=yes && make && make check - sudo make install + (./autogen.sh && ./configure --with-libsodium=yes && make && make check && sudo make install) || exit 1 else cd ./builds/${BUILD_TYPE} && ./ci_build.sh fi