typos in Jenkinsfile

This commit is contained in:
Ulrich Mohr 2023-01-13 17:37:22 +01:00
parent 47d85fb61c
commit 90bafbb6de
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ pipeline {
steps {
sh 'rm -rf $BUILDDIR_HOST'
dir(BUILDDIR_LINUX) {
dir(BUILDDIR_HOST) {
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_TESTS=ON -DFSFW_CICD_BUILD=ON ..'
sh 'cmake --build . -j4'
sh 'cmake --build . -- fsfw-tests_coverage -j4'
@ -26,9 +26,9 @@ pipeline {
}
stage('Linux') {
steps {
sh 'rm -rf $BUILDDIR_HOST'
sh 'rm -rf $BUILDDIR_LINUX'
dir(BUILDDIR_HOST) {
dir(BUILDDIR_LINUX) {
sh 'cmake -DFSFW_OSAL=linux -DFSFW_BUILD_TESTS=ON -DFSFW_CICD_BUILD=ON ..'
sh 'cmake --build . -j4'
sh 'cmake --build . -- fsfw-tests_coverage -j4'