New builds

This commit is contained in:
retropikzel 2026-07-22 18:26:36 +03:00
parent 1007f6437f
commit 9bbb623347
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -32,11 +32,11 @@ pipeline {
} }
steps { steps {
script { script {
def config = readYAML file: 'builds.yaml' files = findFiles(glob: 'makings/*.mks')
config.stages.each { item -> files.each { file ->
stage("${item.name}") { stage("${file}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "${item.cmd}" sh "ls"
} }
} }
} }