fsfw/automation/Jenkinsfile
Robin Mueller b5d890eedd
All checks were successful
fsfw/fsfw/pipeline/head This commit looks good
install Catch2 for docker_d2 and update Jenkinsfile
2022-04-27 13:43:49 +02:00

44 lines
1012 B
Groovy

pipeline {
environment {
BUILDDIR = 'build-tests'
}
agent {
docker { image 'fsfw-ci:d2'}
}
stages {
stage('Clean') {
steps {
sh 'rm -rf $BUILDDIR'
}
}
stage('Configure') {
steps {
dir(BUILDDIR) {
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..'
}
}
}
stage('Build') {
steps {
dir(BUILDDIR) {
sh 'cmake --build . -j4'
}
}
}
stage('Unittests') {
steps {
dir(BUILDDIR) {
sh 'cmake --build . -- fsfw-tests_coverage -j4'
}
}
}
stage('Valgrind') {
steps {
dir(BUILDDIR) {
sh 'valgrind --leak-check=full --error-exitcode=1 ./fsfw-tests'
}
}
}
}
}