[Pkg-owncloud-commits] [owncloud-client] 02/135: Jenkinsfile: Also use 4 parallel jobs for linux builds
Sandro Knauß
hefee at debian.org
Sat Sep 9 14:28:21 UTC 2017
This is an automated email from the git hooks/post-receive script.
hefee pushed a commit to branch master
in repository owncloud-client.
commit 5266720c624a2c287b0e5e90fdc17e3a039e931b
Author: Jocelyn Turcotte <jturcotte at woboq.com>
Date: Mon May 8 18:36:11 2017 +0200
Jenkinsfile: Also use 4 parallel jobs for linux builds
---
Jenkinsfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 16b26a5..090831d 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'''
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list