Browse Source

travis-build: make sure to exit with failure if one of the build steps fails

bboozzoo/uncrustify
Maciek Borzecki 7 years ago
parent
commit
457a025ef8
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      extra/travis-build

+ 2
- 1
extra/travis-build View File

@ -126,7 +126,8 @@ build() {
cd build && \
meson .. && \
ninja && \
ninja test
ninja test \
|| false
DESTDIR=$PWD/install-dir ninja install
(cd install-dir; LC_ALL=C tree -pan . > ../current-tree)


Loading…
Cancel
Save