fsfw/automation/Jenkinsfile

50 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-10-25 14:59:16 +02:00
pipeline {
2021-10-26 20:30:22 +02:00
environment {
BUILDDIR = 'build-tests'
2021-10-26 20:30:22 +02:00
}
agent {
dockerfile {
dir 'automation'
2022-01-31 15:08:52 +01:00
#force docker to redownload base image and rebuild all steps instead of caching them
#this way, we always get an up to date docker image one each build
additionalBuildArgs '--no-cache --pull'
reuseNode true
}
}
stages {
2022-01-26 15:30:01 +01:00
stage('Clean') {
steps {
sh 'rm -rf $BUILDDIR'
}
}
stage('Configure') {
steps {
2021-10-26 20:53:08 +02:00
dir(BUILDDIR) {
2021-10-26 20:30:22 +02:00
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..'
}
2021-10-25 14:59:16 +02:00
}
}
stage('Build') {
steps {
2021-10-26 20:47:53 +02:00
dir(BUILDDIR) {
2021-10-25 14:59:16 +02:00
sh 'cmake --build . -j'
}
}
}
stage('Unittests') {
steps {
2021-10-26 20:47:53 +02:00
dir(BUILDDIR) {
2021-10-25 14:59:16 +02:00
sh 'cmake --build . -- fsfw-tests_coverage -j'
}
}
}
2021-10-27 21:32:40 +02:00
stage('Valgrind') {
steps {
dir(BUILDDIR) {
sh 'valgrind --leak-check=full --error-exitcode=1 ./fsfw-tests'
}
}
}
2021-10-25 14:59:16 +02:00
}
}