From c67509fd5ba2d6668109bc042a6d29cdbe88c328 Mon Sep 17 00:00:00 2001 From: kakwa Date: Thu, 27 Apr 2017 21:56:22 +0200 Subject: [PATCH] parallele build (make -j4) --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1f4e6da..a9889f5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' sh 'export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; cmake . -DBUNDLE_CIVETWEB=ON' - sh 'export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; make' + sh 'export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; make -j4' } }, "FreeBSD 11": { @@ -21,7 +21,7 @@ pipeline { git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' sh 'cmake . -DBUNDLE_CIVETWEB=ON' - sh 'make' + sh 'make -j4' } }, "CentOS 7": { @@ -31,7 +31,7 @@ pipeline { git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' sh 'export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; cmake . -DBUNDLE_CIVETWEB=ON' - sh 'export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; make' + sh 'export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; make -j4' } }, "Debian 8": { @@ -41,7 +41,7 @@ pipeline { git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' sh 'cmake . -DBUNDLE_CIVETWEB=ON' - sh 'make' + sh 'make -j4' } } )