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

12
Jenkinsfile vendored
View File

@ -22,17 +22,14 @@ pipeline {
}
stages {
stage('Build') {
steps {
script {
"chibi sagittarius".split().each { scheme ->
stage("${scheme}") {
stage('chibi') {
agent {
docker {
image "schemers/${scheme}:head"
image "schemers/chibi:head"
reuseNode true
}
}
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 "rake -j8 -C chibi-scheme"
@ -48,9 +45,6 @@ pipeline {
}
}
}
}
}
}
post {
always {