From 09c16e0308d48fb439d57063af1c25b46959f0e1 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 21:52:25 +0300 Subject: [PATCH] New builds --- Jenkinsfile | 9 ++------- makings.scm | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 112c03d..9f85984 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ pipeline { 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' + sh 'git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true' sh 'make -j8 -C chibi-scheme' sh 'make -j8 -C chibi-scheme install' sh 'snow-chibi install retropikzel.compile-r7rs' @@ -44,7 +44,7 @@ pipeline { 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' + sh 'git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true' sh 'make -j8 -C chibi-scheme' sh 'make -j8 -C chibi-scheme install' sh 'snow-chibi install retropikzel.compile-r7rs' @@ -60,9 +60,4 @@ pipeline { } } } - post { - always { - cleanWs() - } - } } diff --git a/makings.scm b/makings.scm index 61a635e..05cbb42 100644 --- a/makings.scm +++ b/makings.scm @@ -1,6 +1,6 @@ (let ((init '("apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev" - "git clone https://github.com/ashinn/chibi-scheme.git --depth=1" + "git clone https://github.com/ashinn/chibi-scheme.git --depth=1 || true" "make -j8 -C chibi-scheme" "make -j8 -C chibi-scheme install" "snow-chibi install retropikzel.compile-r7rs"))