New builds

This commit is contained in:
retropikzel 2026-07-22 17:34:05 +03:00
parent 65e5b8f149
commit 9af7a8109a
1 changed files with 16 additions and 22 deletions

38
Jenkinsfile vendored
View File

@ -22,32 +22,26 @@ pipeline {
} }
stages { stages {
stage('Build') { stage('chibi') {
agent {
docker {
image "schemers/chibi:head"
reuseNode true
}
}
steps { steps {
script { sh "apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev"
"chibi sagittarius".split().each { scheme -> sh "git clone https://github.com/ashinn/chibi-scheme.git --depth=1"
stage("${scheme}") { sh "rake -j8 -C chibi-scheme"
agent { sh "make -j8 -C chibi-scheme install"
docker { sh "snow-chibi install retropikzel.compile-r7rs"
image "schemers/${scheme}:head" "tap debug".split().each { library ->
reuseNode true stage("${library}") {
} catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
} sh "make SCHEME=${scheme} LIBRARY=${library} all install test"
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 "rake -j8 -C chibi-scheme"
sh "make -j8 -C chibi-scheme install"
sh "snow-chibi install retropikzel.compile-r7rs"
"tap debug".split().each { library ->
stage("${library}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make SCHEME=${scheme} LIBRARY=${library} all install test"
}
}
} }
} }
} }
}
} }
} }
} }