New builds

This commit is contained in:
retropikzel 2026-07-23 06:53:36 +03:00
parent 166f918897
commit 7efa48a886
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -39,7 +39,7 @@ pipeline {
} }
def get_chibi_stages() { def get_chibi_stages() {
return [ return {
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'
@ -59,11 +59,11 @@ def get_chibi_stages() {
sh 'make SCHEME=chibi LIBRARY=debug all install test' sh 'make SCHEME=chibi LIBRARY=debug all install test'
} }
} }
] }
} }
def get_sagittarius_stages() { def get_sagittarius_stages() {
return [ return {
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'
@ -83,6 +83,6 @@ def get_sagittarius_stages() {
sh 'make SCHEME=sagittarius LIBRARY=debug all install test' sh 'make SCHEME=sagittarius LIBRARY=debug all install test'
} }
} }
] }
} }