CI build does not fail when tests fail. Fix #1527

This commit is contained in:
Luca Boccassi 2015-08-16 16:01:03 +01:00
parent e74e36def1
commit f4e9e6f062

View File

@ -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