linux and FreeRTOS Unit tests and some fixes #721

Closed
mohr wants to merge 12 commits from mohr/freeRTOS into development
Showing only changes of commit 90bafbb6de - Show all commits

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'