building with -j4 instead of -j to limit strain on buildserver
EIVE/eive-obsw/pipeline/head Build started... Details
EIVE/eive-obsw/pipeline/pr-develop This commit looks good Details

This commit is contained in:
Ulrich Mohr 2022-03-03 15:59:44 +01:00
parent e07713a6f7
commit bb20b470ec
1 changed files with 2 additions and 2 deletions

View File

@ -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'
}
}