diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index b97c3a9a8..0768f2cc2 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -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'