From b44225a6bac4ba12b433f6857390e3f73ac24c9f Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 16:40:52 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d0e5033..fdf3e99 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,15 +25,15 @@ pipeline { stage('Build') { steps { script { - def builds = readYaml file: 'buildconfig.yaml' - builds.each { build -> + def config = readYaml file: 'buildconfig.yaml' + config.each { build -> stage("WIP") { agent { docker { image "${build.image}" } } - build.stages.each { stage -> + config.stages.each { stage -> stage("WIP") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "${stage.cmd}"