From 4815bb4d9a95af4c25a2cd5d82f200fa4a9a6ac4 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 16:40:03 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}" }