diff options
Diffstat (limited to 'scripts/travis-ci.sh')
-rwxr-xr-x | scripts/travis-ci.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/travis-ci.sh b/scripts/travis-ci.sh index 8aa5d1e..6f9868d 100755 --- a/scripts/travis-ci.sh +++ b/scripts/travis-ci.sh @@ -1,6 +1,6 @@ #!/bin/bash -qmake && make +qmake && make -j4 if [[ $? != 0 ]]; then echo "Error building OpenSCAD executable" exit 1 @@ -11,12 +11,12 @@ if [[ $? != 0 ]]; then echo "Error configuring test suite" exit 1 fi -make +make -j4 if [[ $? != 0 ]]; then echo "Error building test suite" exit 1 fi -ctest +ctest -j8 if [[ $? != 0 ]]; then echo "Test failure" exit 1 |