Don't stop compilation at the first error.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Mon, 9 Oct 2017 18:59:26 +0000 (20:59 +0200)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Mon, 9 Oct 2017 18:59:26 +0000 (20:59 +0200)
This gives developers a chance to see at once all the potential
errors that can exist which could make further compilations fail.

.travis.yml

index bf63e00..9bb7d3d 100644 (file)
@@ -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