New builds

This commit is contained in:
retropikzel 2026-07-22 16:52:46 +03:00
parent 10cd26f963
commit 5ca3fc468b
1 changed files with 1 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline {
stage('Build') {
steps {
script {
def config = readYaml file: 'builds.yaml'
def config = readJSONfile: 'builds.json'
config.builds.each { build ->
stage("${build.name}") {
agent {
@ -33,7 +33,6 @@ pipeline {
image "${build.image}"
}
}
/*
build.stages.each { stage ->
stage("${stage.name}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
@ -41,7 +40,6 @@ pipeline {
}
}
}
*/
}
}
}