New builds

This commit is contained in:
retropikzel 2026-07-22 18:11:32 +03:00
parent 62084a7d39
commit 1c2c1ccd82
1 changed files with 15 additions and 12 deletions

27
Jenkinsfile vendored
View File

@ -31,24 +31,27 @@ pipeline {
} }
} }
steps { steps {
stage('init') { script {
steps { ´´´
sh "apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev" 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" git clone https://github.com/ashinn/chibi-scheme.git --depth=1
sh "make -j8 -C chibi-scheme" make -j8 -C chibi-scheme
sh "make -j8 -C chibi-scheme install" make -j8 -C chibi-scheme install
sh "snow-chibi install retropikzel.compile-r7rs" snow-chibi install retropikzel.compile-r7rs
} make SCHEME=chibi LIBRARY=tap all install test
} ```.split("\n").each { cmd ->
stage('tap') { stage("${cmd}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=chibi LIBRARY=tap all install test" sh "${cmd}"
}
}
} }
} }
} }
} }
} }
post { post {
success { success {
cleanWs() cleanWs()