From: Jocelyn Turcotte Date: Mon, 8 May 2017 16:36:11 +0000 (+0200) Subject: Jenkinsfile: Also use 4 parallel jobs for linux builds X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~722^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5266720c624a2c287b0e5e90fdc17e3a039e931b;p=nextcloud-desktop.git Jenkinsfile: Also use 4 parallel jobs for linux builds --- diff --git a/Jenkinsfile b/Jenkinsfile index 16b26a54b..090831de4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ node('CLIENT') { mkdir build cd build cmake -DUNIT_TESTING=1 -DBUILD_WITH_QT4=ON .. - make + make -j4 ctest --output-on-failure''' stage 'Qt4 - clang' @@ -18,7 +18,7 @@ node('CLIENT') { mkdir build cd build cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DBUILD_WITH_QT4=ON .. - make + make -j4 ctest --output-on-failure''' stage 'Qt5' @@ -26,7 +26,7 @@ node('CLIENT') { mkdir build cd build cmake -DUNIT_TESTING=1 -DBUILD_WITH_QT4=OFF .. - make + make -j4 ctest --output-on-failure''' stage 'Qt5 - clang' @@ -34,7 +34,7 @@ node('CLIENT') { mkdir build cd build cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DBUILD_WITH_QT4=OFF .. - make + make -j4 ctest --output-on-failure'''