I can not jenkins

This commit is contained in:
Ulrich Mohr 2021-10-26 20:47:53 +02:00
parent 3c41472649
commit 1923b339e9
1 changed files with 3 additions and 3 deletions

View File

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