From 5ca3fc468bbaea4bb923fca4dff35704c12668cb Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 16:52:46 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ce0f707..33d00f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 { } } } - */ } } }