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 {
script {
def config = readYAML file: 'builds.yaml'
config.stages.each { item ->
stage("${item.name}") {
files = findFiles(glob: 'makings/*.mks')
files.each { file ->
stage("${file}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "${item.cmd}"
sh "ls"
}
}
}