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 {
stage('init') {
steps {
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 "make -j8 -C chibi-scheme"
sh "make -j8 -C chibi-scheme install"
sh "snow-chibi install retropikzel.compile-r7rs"
}
}
stage('tap') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=chibi LIBRARY=tap all install test"
script {
´´´
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
make -j8 -C chibi-scheme
make -j8 -C chibi-scheme install
snow-chibi install retropikzel.compile-r7rs
make SCHEME=chibi LIBRARY=tap all install test
```.split("\n").each { cmd ->
stage("${cmd}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "${cmd}"
}
}
}
}
}
}
}
post {
success {
cleanWs()