mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
CI: be sure to exit on failures
a807cfa6eb completely broke the whole
point of having a CI: we always exit with success!
This commit is contained in:
@@ -193,8 +193,8 @@ script:
|
||||
- git describe || git tag v3.0 -m "Fake version 3.0."
|
||||
- git describe
|
||||
- ./bootstrap
|
||||
- ./configure --enable-gcc-warnings CC="$CC" CXX="$CXX" || cat config.log
|
||||
- ./configure --enable-gcc-warnings CC="$CC" CXX="$CXX" || { cat config.log && exit 1; }
|
||||
- make -j2
|
||||
- make check VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log
|
||||
- make maintainer-check-posix VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log
|
||||
- make maintainer-check-g++ VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log
|
||||
- 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; }
|
||||
|
||||
Reference in New Issue
Block a user