diff --git a/Jenkinsfile b/Jenkinsfile index 670f795..d0e5033 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,14 +27,14 @@ pipeline { script { def builds = readYaml file: 'buildconfig.yaml' builds.each { build -> - stage("${build.name}") { + stage("WIP") { agent { docker { image "${build.image}" } } build.stages.each { stage -> - stage("${stage.name}") { + stage("WIP") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "${stage.cmd}" }