fsfw/automation/Jenkinsfile

86 lines
2.7 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 = 'cmake-build-tests'
2022-09-13 13:54:23 +02:00
DOCDDIR = 'cmake-build-documentation'
2021-10-26 20:30:22 +02:00
}
agent {
2022-09-13 14:46:12 +02:00
docker {
image 'fsfw-ci:d6'
2022-09-13 14:46:12 +02:00
args '--network host'
}
}
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) {
2022-07-18 14:36:40 +02:00
sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_TESTS=ON -DFSFW_CICD_BUILD=ON ..'
2021-10-26 20:30:22 +02:00
}
2021-10-25 14:59:16 +02:00
}
}
stage('Build') {
steps {
2021-10-26 20:47:53 +02:00
dir(BUILDDIR) {
sh 'cmake --build . -j4'
2021-10-25 14:59:16 +02:00
}
}
}
stage('Unittests') {
steps {
2021-10-26 20:47:53 +02:00
dir(BUILDDIR) {
sh 'cmake --build . -- fsfw-tests_coverage -j4'
2021-10-25 14:59:16 +02:00
}
}
}
2021-10-27 21:32:40 +02:00
stage('Valgrind') {
steps {
dir(BUILDDIR) {
sh 'valgrind --leak-check=full --error-exitcode=1 ./fsfw-tests'
}
}
}
2022-09-13 13:54:23 +02:00
stage('Documentation') {
2022-09-13 14:20:30 +02:00
when {
branch 'mohr/documentation_ci'
2022-09-13 14:20:30 +02:00
}
2022-09-13 13:54:23 +02:00
steps {
dir(DOCDDIR) {
sh 'cmake -DFSFW_BUILD_DOCS=ON -DFSFW_OSAL=host ..'
sh 'make Sphinx'
sshagent(credentials: ['documentation-buildfix']) {
2022-09-23 20:26:45 +02:00
sh 'rsync -r --delete docs/sphinx/* buildfix@documentation.irs.uni-stuttgart.de:/fsfw/development'
2022-09-13 13:54:23 +02:00
}
}
dir(BUILDDIR) {
sshagent(credentials: ['documentation-buildfix']) {
2022-09-23 20:26:45 +02:00
sh 'rsync -r --delete fsfw-tests_coverage/* buildfix@documentation.irs.uni-stuttgart.de:/fsfw/coverage/development'
}
}
2022-09-13 13:54:23 +02:00
}
}
2022-09-13 14:20:30 +02:00
stage('Master Documentation') {
when {
2022-09-23 18:33:47 +02:00
branch 'mohr/documentation_ci'
2022-09-13 14:20:30 +02:00
}
steps {
dir(DOCDDIR) {
sh 'cmake -DFSFW_BUILD_DOCS=ON -DFSFW_OSAL=host ..'
sh 'make Sphinx'
sshagent(credentials: ['documentation-buildfix']) {
2022-09-23 20:26:45 +02:00
sh 'rsync -r --delete docs/sphinx/* buildfix@documentation.irs.uni-stuttgart.de:/fsfw/master'
2022-09-13 14:20:30 +02:00
}
}
dir(BUILDDIR) {
sshagent(credentials: ['documentation-buildfix']) {
2022-09-23 20:26:45 +02:00
sh 'rsync -r --delete fsfw-tests_coverage/* buildfix@documentation.irs.uni-stuttgart.de:/fsfw/coverage/master'
}
}
2022-09-13 14:20:30 +02:00
}
}
2021-10-25 14:59:16 +02:00
}
}