New builds

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

6
Jenkinsfile vendored
View File

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