From 96ad8c50c2699066830bf806412a3d95d2003b40 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 23 Jul 2026 07:20:16 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 190e2e0..921fce8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,7 @@ pipeline { def get_chibi_stages() { def stages = [] - stages['init'] = stage('init') { + stages.plus(stage('init') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { 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' @@ -50,23 +50,23 @@ def get_chibi_stages() { sh 'make -j8 -C chibi-scheme install' sh 'snow-chibi install retropikzel.compile-r7rs' } - } - stages['tap'] = stage('tap') { + }) + stages.plus(stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh 'make SCHEME=chibi LIBRARY=tap all install test' } - } - stages['debug'] = stage('debug') { + }) + stages.plus(stage('debug') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh 'make SCHEME=chibi LIBRARY=debug all install test' } - } + }) return stages } def get_sagittarius_stages() { def stages = [] - stages['init'] = stage('init') { + stages.plus(stage('init') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { 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' @@ -74,17 +74,17 @@ def get_sagittarius_stages() { sh 'make -j8 -C chibi-scheme install' sh 'snow-chibi install retropikzel.compile-r7rs' } - } - stages['tap'] = stage('tap') { + }) + stages.plus(stage('tap') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh 'make SCHEME=sagittarius LIBRARY=tap all install test' } - } - stages['debug'] = stage('debug') { + }) + stages.plus(stage('debug') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh 'make SCHEME=sagittarius LIBRARY=debug all install test' } - } + }) return stages }