New builds
This commit is contained in:
parent
396298467a
commit
bcd01201ea
|
|
@ -32,13 +32,15 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
files = findFiles(glob: 'makings/*.mks')
|
stage("one") {
|
||||||
files.each { file ->
|
|
||||||
stage("${file}") {
|
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh "ls"
|
sh "ls"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage("two") {
|
||||||
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh "ls"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
(let ((init
|
||||||
|
`("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"))
|
||||||
|
(tap
|
||||||
|
(lambda (scheme)
|
||||||
|
(string-append "COMPILE_R7RS=" scheme " compile-r7rs "))))
|
||||||
|
|
||||||
|
(map (lambda (scheme)
|
||||||
|
`((image ,(string-append "schemers/" scheme ":head"))
|
||||||
|
(stages
|
||||||
|
(init ,init)
|
||||||
|
(tap ,(tap scheme)))))
|
||||||
|
'("chibi")))
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
schemers/chibi:head
|
|
||||||
Loading…
Reference in New Issue