Compare commits

...

4 Commits

Author SHA1 Message Date
retropikzel 3095423e4f New builds 2026-07-22 17:10:42 +03:00
retropikzel 78a820373e New builds 2026-07-22 17:09:02 +03:00
retropikzel 0b6de16fb4 New builds 2026-07-22 17:07:19 +03:00
retropikzel 953f619558 New builds 2026-07-22 17:01:32 +03:00
3 changed files with 11 additions and 28 deletions

1
.gitignore vendored
View File

@ -26,4 +26,3 @@ venv*
retropikzel/wasm/plus.sld retropikzel/wasm/plus.sld
retropikzel/*.c retropikzel/*.c
retropikzel/*.meta retropikzel/*.meta
!builds.json

20
Jenkinsfile vendored
View File

@ -25,23 +25,25 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
script { script {
def config = readYaml file: 'builds.yaml' "chibi sagittarius".split().each { scheme ->
config.builds.each { build -> stage("${scheme}") {
stage("${build.name}") {
agent { agent {
docker { docker {
image "${build.image}" image "schemers/${scheme}:head"
} }
} }
/* sh "apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev"
build.stages.each { stage -> sh "git clone https://github.com/ashinn/chibi-scheme.git --depth=1"
stage("${stage.name}") { 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') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "${stage.cmd}" sh "make SCHEME=${scheme} LIBRARY=${library} all install test"
} }
} }
} }
*/
} }
} }
} }

View File

@ -1,18 +0,0 @@
{
"builds": [
{
"name": "Chibi",
"image": "schemers/chibi:head",
"stages": [
{
"name": "Init",
"cmd": "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"
},
{
"name": "tap",
"cmd": "COMPILE_R7RS=chibi compile-r7rs -o tap retropikzel/tap/test.scm && ./tap"
}
]
}
]
}