Release v3.0.0 #532

Merged
mohr merged 151 commits from development into master 2022-01-10 14:52:32 +01:00
Showing only changes of commit 1923b339e9 - Show all commits

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