From ebda0970765e881feddd1879fb39ac9a3aa951a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 16 Sep 2014 02:07:39 +0200 Subject: [PATCH] script: use a parallel build on Travis --- script/cibuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cibuild.sh b/script/cibuild.sh index dda4ead4a..abe31d0dc 100755 --- a/script/cibuild.sh +++ b/script/cibuild.sh @@ -15,7 +15,7 @@ export GITTEST_REMOTE_URL="git://localhost/test.git" mkdir _build cd _build cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS || exit $? -cmake --build . --target install || exit $? +make -j2 install || exit $? ctest -V . || exit $? # Now that we've tested the raw git protocol, let's set up ssh to we