diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis-ci.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/travis-ci.sh b/scripts/travis-ci.sh index 9d4258a..362c2df 100755 --- a/scripts/travis-ci.sh +++ b/scripts/travis-ci.sh @@ -1,12 +1,7 @@ #!/bin/bash -qmake && make -j4 -if [[ $? != 0 ]]; then - echo "Error building OpenSCAD executable" - exit 1 -fi cd tests -cmake . +cmake -DOPENSCAD_UPLOAD_TESTS=yes . if [[ $? != 0 ]]; then echo "Error configuring test suite" exit 1 |