https://git.reactos.org/?p=reactos.git;a=commitdiff;h=496b1cb9514698d819ff55...
commit 496b1cb9514698d819ff554fa6d03b43296490ed Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Mon Oct 9 20:59:26 2017 +0200
Don't stop compilation at the first error.
This gives developers a chance to see at once all the potential errors that can exist which could make further compilations fail. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml index bf63e00393..9bb7d3d79b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ git: before_script: - wget https://svn.reactos.org/amine/RosBEBinFull.tar.gz -O RosBE.tar.gz - tar -xzf RosBE.tar.gz - - echo 'mkdir ../Build && cd ../Build && $TRAVIS_BUILD_DIR/configure.sh -DENABLE_ROSTESTS=1 && cd reactos && ninja && ninja bootcd' > tmp_file + - echo 'mkdir ../Build && cd ../Build && $TRAVIS_BUILD_DIR/configure.sh -DENABLE_ROSTESTS=1 && cd reactos && ninja -k 0 && ninja bootcd -k 0' > tmp_file
script: - ./RosBEBinFull/RosBE.sh < tmp_file