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() {
return {
script {
stage('init') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev'
@ -59,11 +60,13 @@ def get_chibi_stages() {
sh 'make SCHEME=chibi LIBRARY=debug all install test'
}
}
}
}
}
def get_sagittarius_stages() {
return {
script {
stage('init') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev'
@ -83,6 +86,7 @@ def get_sagittarius_stages() {
sh 'make SCHEME=sagittarius LIBRARY=debug all install test'
}
}
}
}
}