update jenkinsfile
fsfw/fsfw/pipeline/pr-development There was a failure building this commit Details

This commit is contained in:
Robin Mueller 2022-01-28 13:33:06 +01:00
parent 441b3b83c8
commit 386843e3e7
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 21 additions and 18 deletions

View File

@ -1,25 +1,28 @@
pipeline {
agent any
environment {
DOCKER_TAG = 'fsfw-build'
DOCK_FILE_DIR = 'automation'
BUILDDIR = 'build-tests'
}
stages {
stage('Build Container') {
when {
anyOf {
changeset "automation/Dockerfile";
changelog 'cleanDocker'
stage('Create Docker') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
additionalBuildArgs '--no-cache'
}
}
steps {
sh 'docker build -t $DOCKER_TAG - < automation/Dockerfile'
when {
anyOf {
changeset "$DOCK_FILE_DIR/Dockerfile";
changelog 'cleanDocker'
}
}
}
stage('Clean') {
agent {
docker {
image '$DOCKER_TAG'
dockerfile {
dir '$DOCK_FILE_DIR'
reuseNode true
}
}
@ -36,8 +39,8 @@ pipeline {
}
stage('Configure') {
agent {
docker {
image '$DOCKER_TAG'
dockerfile {
dir '$DOCK_FILE_DIR'
reuseNode true
}
}
@ -49,8 +52,8 @@ pipeline {
}
stage('Build') {
agent {
docker {
image '$DOCKER_TAG'
dockerfile {
dir '$DOCK_FILE_DIR'
reuseNode true
}
}
@ -62,8 +65,8 @@ pipeline {
}
stage('Unittests') {
agent {
docker {
image '$DOCKER_TAG'
dockerfile {
dir '$DOCK_FILE_DIR'
reuseNode true
}
}
@ -75,8 +78,8 @@ pipeline {
}
stage('Valgrind') {
agent {
docker {
image '$DOCKER_TAG'
dockerfile {
dir '$DOCK_FILE_DIR'
reuseNode true
}
}