From 83dc80ff5f1dbf30fff8d7f263d47d7f70832bd4 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Mon, 13 May 2013 21:14:34 -0400 Subject: Parallel build 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 -- cgit v0.10.1