Jenkinsfile syntax is weird, maybe this works...
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Ulrich Mohr 2022-01-28 14:10:24 +01:00
parent bf7fabd7ba
commit eba9abfc9a
1 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ pipeline {
stage('Create Docker') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
dir DOCK_FILE_DIR
additionalBuildArgs '--no-cache'
reuseNode true
}
@ -27,7 +27,7 @@ pipeline {
stage('Clean') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
dir DOCK_FILE_DIR
reuseNode true
}
}
@ -45,7 +45,7 @@ pipeline {
stage('Configure') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
dir DOCK_FILE_DIR
reuseNode true
}
}
@ -58,7 +58,7 @@ pipeline {
stage('Build') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
dir DOCK_FILE_DIR
reuseNode true
}
}
@ -71,7 +71,7 @@ pipeline {
stage('Unittests') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
dir DOCK_FILE_DIR
reuseNode true
}
}
@ -84,7 +84,7 @@ pipeline {
stage('Valgrind') {
agent {
dockerfile {
dir '$DOCK_FILE_DIR'
dir DOCK_FILE_DIR
reuseNode true
}
}