New builds

This commit is contained in:
retropikzel 2026-07-22 16:40:03 +03:00
parent acd1a25e91
commit 4815bb4d9a
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -27,14 +27,14 @@ pipeline {
script { script {
def builds = readYaml file: 'buildconfig.yaml' def builds = readYaml file: 'buildconfig.yaml'
builds.each { build -> builds.each { build ->
stage("${build.name}") { stage("WIP") {
agent { agent {
docker { docker {
image "${build.image}" image "${build.image}"
} }
} }
build.stages.each { stage -> build.stages.each { stage ->
stage("${stage.name}") { stage("WIP") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "${stage.cmd}" sh "${stage.cmd}"
} }