diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index e5b5ecda..9dc716a6 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -14,7 +14,7 @@ pipeline { } steps { sh 'rm -rf $BUILDDIR' - dir($BUILDDIR) { + dir(env.BUILDDIR) { sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..' } } @@ -27,7 +27,7 @@ pipeline { } } steps { - dir($BUILDDIR) { + dir(BUILDDIR) { sh 'cmake --build . -j' } } @@ -40,7 +40,7 @@ pipeline { } } steps { - dir($BUILDDIR) { + dir(BUILDDIR) { sh 'cmake --build . -- fsfw-tests_coverage -j' } }