From bb20b470ec6e57c6974be70e1ad3ba74fbfb443a Mon Sep 17 00:00:00 2001 From: Ulrich Mohr Date: Thu, 3 Mar 2022 15:59:44 +0100 Subject: [PATCH] building with -j4 instead of -j to limit strain on buildserver --- automation/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 300a7749..fe79dc73 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -20,7 +20,7 @@ pipeline { steps { dir(BUILDDIR_Q7) { sh 'cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug ..' - sh 'cmake --build . -j' + sh 'cmake --build . -j4' } } } @@ -28,7 +28,7 @@ pipeline { steps { dir(BUILDDIR_LINUX) { sh 'cmake ..' - sh 'cmake --build . -t eive-unittest -j' + sh 'cmake --build . -t eive-unittest -j4' sh './eive-unittest' } }