Compare commits

..

No commits in common. "23e1118730d3bff386e8fa0b0bbc918c332b333b" and "10cd26f9630a80e6ac0de31e7c2a2405b3f5fdfe" have entirely different histories.

3 changed files with 3 additions and 20 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

4
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
script { script {
def config = readJSON file: 'builds.json' def config = readYaml file: 'builds.yaml'
config.builds.each { build -> config.builds.each { build ->
stage("${build.name}") { stage("${build.name}") {
agent { agent {
@ -33,6 +33,7 @@ pipeline {
image "${build.image}" image "${build.image}"
} }
} }
/*
build.stages.each { stage -> build.stages.each { stage ->
stage("${stage.name}") { stage("${stage.name}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
@ -40,6 +41,7 @@ pipeline {
} }
} }
} }
*/
} }
} }
} }

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"
}
]
}
]
}