chore(.travis.yml): fail eagerly

This commit is contained in:
Sebastian Ullrich 2017-02-16 22:12:31 +01:00
parent e8fa54cc51
commit 6b611eb030
2 changed files with 4 additions and 4 deletions

View file

@ -109,8 +109,8 @@ script:
-DMULTI_THREAD=$MULTI_THREAD
-DSTATIC=$STATIC
-DLEAN_EXTRA_MAKE_OPTS=$LEAN_EXTRA_MAKE_OPTS
../src
- make -j2
../src || exit
- make -j2 || exit
- cpack
# TODO(gabriel): add smaller test subset for debug and emscripten builds
- if [[ $CMAKE_BUILD_TYPE == Release ]]; then

View file

@ -109,8 +109,8 @@ script:
-DMULTI_THREAD=$MULTI_THREAD
-DSTATIC=$STATIC
-DLEAN_EXTRA_MAKE_OPTS=$LEAN_EXTRA_MAKE_OPTS
../src
- make -j2
../src || exit
- make -j2 || exit
- cpack
# TODO(gabriel): add smaller test subset for debug and emscripten builds
- if [[ $CMAKE_BUILD_TYPE == Release ]]; then