Merge branch 'develop' into mueller/plpcdu
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
Robin Müller 2022-03-04 15:31:21 +01:00
commit 926888308d

View File

@ -20,7 +20,7 @@ pipeline {
steps { steps {
dir(BUILDDIR_Q7) { dir(BUILDDIR_Q7) {
sh 'cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug ..' sh 'cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug ..'
sh 'cmake --build . -j' sh 'cmake --build . -j4'
} }
} }
} }
@ -28,7 +28,7 @@ pipeline {
steps { steps {
dir(BUILDDIR_LINUX) { dir(BUILDDIR_LINUX) {
sh 'cmake ..' sh 'cmake ..'
sh 'cmake --build . -t eive-unittest -j' sh 'cmake --build . -t eive-unittest -j4'
sh './eive-unittest' sh './eive-unittest'
} }
} }