fsfw/automation/Jenkinsfile

49 lines
1.1 KiB
Groovy

pipeline {
environment {
DOCK_FILE_DIR = 'automation'
BUILDDIR = 'build-tests'
}
agent {
dockerfile {
dir DOCK_FILE_DIR
additionalBuildArgs '--no-cache'
reuseNode true
}
}
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 . -j'
}
}
}
stage('Unittests') {
steps {
dir(BUILDDIR) {
sh 'cmake --build . -- fsfw-tests_coverage -j'
}
}
}
stage('Valgrind') {
steps {
dir(BUILDDIR) {
sh 'valgrind --leak-check=full --error-exitcode=1 ./fsfw-tests'
}
}
}
}
}