summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2018-09-24 21:00:50 +0200
committerAkim Demaille <akim.demaille@gmail.com>2018-09-24 21:52:55 +0200
commite198269f4093dd0e503d98f45ad7b801ac5bd93b (patch)
tree2e135748f45909642a096d2693f3ba81e15fa166 /.travis.yml
parent6181f05630ca81e8771cfe48782c0c9ce8dce3f9 (diff)
downloadbison-e198269f4093dd0e503d98f45ad7b801ac5bd93b.tar.gz
CI: don't exit
* .travis.yml: Prefer `false` to `exit`, as it completely ends the script (so we don't get the logs).
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index b3960c42..8d135c41 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -286,11 +286,11 @@ script:
- git describe
- ./bootstrap
- if [[ -f ~/.bashrc ]]; then source ~/.bashrc; fi
- - ./configure --enable-gcc-warnings CC="$CC" CXX="$CXX" $CONFIGUREFLAGS || { cat config.log && exit 1; }
+ - ./configure --enable-gcc-warnings CC="$CC" CXX="$CXX" $CONFIGUREFLAGS || { cat config.log && false; }
- make -j2 $MAKE_ARGS
- - make check VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && exit 1; }
- - make maintainer-check-posix VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && exit 1; }
- - make maintainer-check-g++ VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && exit 1; }
+ - make check VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && false; }
+ - make maintainer-check-posix VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && false; }
+ - make maintainer-check-g++ VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && false; }
after_script:
- if [[ $CC == "icc" ]]; then uninstall_intel_software; fi