New builds

This commit is contained in:
retropikzel 2026-07-22 16:43:31 +03:00
parent 641d8fc7fb
commit e27df2fa97
2 changed files with 16 additions and 15 deletions

6
Jenkinsfile vendored
View File

@ -26,15 +26,15 @@ pipeline {
steps { steps {
script { script {
def config = readYaml file: 'builds.yaml' def config = readYaml file: 'builds.yaml'
config.each { build -> config.builds.each { build ->
stage("WIP") { stage("${build.name}") {
agent { agent {
docker { docker {
image "${build.image}" image "${build.image}"
} }
} }
config.stages.each { stage -> config.stages.each { stage ->
stage("WIP") { stage("${stage.name}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "${stage.cmd}" sh "${stage.cmd}"
} }

View File

@ -1,4 +1,5 @@
- name: Chibi builds:
- name: Chibi
image: schemers/chibi:head image: schemers/chibi:head
stages: stages:
- name: Init - name: Init