New builds

This commit is contained in:
retropikzel 2026-07-23 06:55:55 +03:00
parent 1143990d57
commit 6589b7173d
1 changed files with 4 additions and 6 deletions

10
Jenkinsfile vendored
View File

@ -17,7 +17,8 @@ pipeline {
} }
steps { steps {
script { script {
get_chibi_stages() def stages = get_chibi_stages()
parallel stages
} }
} }
} }
@ -31,7 +32,8 @@ pipeline {
} }
steps { steps {
script { script {
get_sagittarius_stages() def stages = get_sagittarius_stages()
parallel stages
} }
} }
} }
@ -40,7 +42,6 @@ pipeline {
def get_chibi_stages() { def get_chibi_stages() {
return { return {
script {
stage('init') { stage('init') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev' sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev'
@ -62,11 +63,9 @@ def get_chibi_stages() {
} }
} }
} }
}
def get_sagittarius_stages() { def get_sagittarius_stages() {
return { return {
script {
stage('init') { stage('init') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev' sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev'
@ -88,5 +87,4 @@ def get_sagittarius_stages() {
} }
} }
} }
}