New builds

This commit is contained in:
retropikzel 2026-07-23 06:54:38 +03:00
parent 7efa48a886
commit 1143990d57
1 changed files with 4 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -40,6 +40,7 @@ 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'
@ -60,10 +61,12 @@ 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'
@ -84,5 +87,6 @@ def get_sagittarius_stages() {
} }
} }
} }
}
} }