New builds

This commit is contained in:
retropikzel 2026-07-22 21:52:25 +03:00
parent 667ed5242f
commit 09c16e0308
2 changed files with 3 additions and 8 deletions

9
Jenkinsfile vendored
View File

@ -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()
}
}
}

View File

@ -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"))