v1.12.0 #269

Merged
muellerr merged 493 commits from develop into main 2022-07-04 11:19:05 +02:00
3 changed files with 11 additions and 4 deletions
Showing only changes of commit a2a7313016 - Show all commits

View File

@ -12,8 +12,11 @@ list yields a list of all related PRs for each release.
# [v1.12.0] # [v1.12.0]
## Changes ## Changed
- Build unittest as default side product of hosted builds
PR: https://egit.irs.uni-stuttgart.de/eive/eive-obsw/pulls/244
- Let CI/CD build host build and run unittest side product in same step
- Sun Sensors have names denoting their location and poiting in the satellite now - Sun Sensors have names denoting their location and poiting in the satellite now
PR: https://egit.irs.uni-stuttgart.de/eive/eive-obsw/pulls/245 PR: https://egit.irs.uni-stuttgart.de/eive/eive-obsw/pulls/245
- Better RTD names denoting their purpose (and location consequently) - Better RTD names denoting their purpose (and location consequently)

View File

@ -298,7 +298,11 @@ target_include_directories(${WATCHDOG_NAME} PUBLIC
) )
# unittests # unittests
add_executable(${UNITTEST_NAME} EXCLUDE_FROM_ALL) if(NOT TGT_BSP)
add_executable(${UNITTEST_NAME})
else()
add_executable(${UNITTEST_NAME} EXCLUDE_FROM_ALL)
endif()
if(EIVE_ADD_ETL_LIB) if(EIVE_ADD_ETL_LIB)
endif() endif()

View File

@ -24,11 +24,11 @@ pipeline {
} }
} }
} }
stage('Unittests') { stage('Build Host and Tests') {
steps { steps {
dir(BUILDDIR_LINUX) { dir(BUILDDIR_LINUX) {
sh 'cmake ..' sh 'cmake ..'
sh 'cmake --build . -t eive-unittest -j4' sh 'cmake --build . -j4'
sh './eive-unittest' sh './eive-unittest'
} }
} }