fsfw/automation/Jenkinsfile
Ulrich Mohr 19f9b0280c
All checks were successful
fsfw/fsfw/pipeline/head This commit looks good
added jenkins integration
2021-10-25 14:59:16 +02:00

39 lines
967 B
Groovy

pipeline {
agent any
stages {
stage('Clean') {
steps {
sh 'rm -rf build-unittests'
}
}
stage('Build') {
agent {
dockerfile {
dir 'automation'
additionalBuildArgs '--no-cache'
reuseNode true
}
}
steps {
dir('build-unittests') {
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_UNITTESTS=ON ..'
sh 'cmake --build . -j'
}
}
}
stage('Unittests') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
dir('build-unittests') {
sh 'cmake --build . -- fsfw-tests_coverage -j'
}
}
}
}
}