New builds

This commit is contained in:
retropikzel 2026-07-23 07:20:16 +03:00
parent bdac5e5d7e
commit 96ad8c50c2
1 changed files with 12 additions and 12 deletions

24
Jenkinsfile vendored
View File

@ -42,7 +42,7 @@ pipeline {
def get_chibi_stages() { def get_chibi_stages() {
def stages = [] def stages = []
stages['init'] = stage('init') { stages.plus(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'
sh 'git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true' sh 'git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true'
@ -50,23 +50,23 @@ def get_chibi_stages() {
sh 'make -j8 -C chibi-scheme install' sh 'make -j8 -C chibi-scheme install'
sh 'snow-chibi install retropikzel.compile-r7rs' sh 'snow-chibi install retropikzel.compile-r7rs'
} }
} })
stages['tap'] = stage('tap') { stages.plus(stage('tap') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make SCHEME=chibi LIBRARY=tap all install test' sh 'make SCHEME=chibi LIBRARY=tap all install test'
} }
} })
stages['debug'] = stage('debug') { stages.plus(stage('debug') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make SCHEME=chibi LIBRARY=debug all install test' sh 'make SCHEME=chibi LIBRARY=debug all install test'
} }
} })
return stages return stages
} }
def get_sagittarius_stages() { def get_sagittarius_stages() {
def stages = [] def stages = []
stages['init'] = stage('init') { stages.plus(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'
sh 'git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true' sh 'git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true'
@ -74,17 +74,17 @@ def get_sagittarius_stages() {
sh 'make -j8 -C chibi-scheme install' sh 'make -j8 -C chibi-scheme install'
sh 'snow-chibi install retropikzel.compile-r7rs' sh 'snow-chibi install retropikzel.compile-r7rs'
} }
} })
stages['tap'] = stage('tap') { stages.plus(stage('tap') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make SCHEME=sagittarius LIBRARY=tap all install test' sh 'make SCHEME=sagittarius LIBRARY=tap all install test'
} }
} })
stages['debug'] = stage('debug') { stages.plus(stage('debug') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make SCHEME=sagittarius LIBRARY=debug all install test' sh 'make SCHEME=sagittarius LIBRARY=debug all install test'
} }
} })
return stages return stages
} }