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 {
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}"
}