From 7efa48a88678f36e66da9703217be382903ed211 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 23 Jul 2026 06:53:36 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b4c4db6..ef69120 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,7 @@ pipeline { } def get_chibi_stages() { - return [ + return { stage('init') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { 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' } } - ] + } } def get_sagittarius_stages() { - return [ + return { stage('init') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { 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' } } - ] + } }