New builds
This commit is contained in:
parent
b2c362bd78
commit
667ed5242f
|
|
@ -32,6 +32,33 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('sagittarius') {
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'schemers/sagittarius:head'
|
||||||
|
args '--user=root'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
stage('init') {
|
||||||
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
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 'make -j8 -C chibi-scheme'
|
||||||
|
sh 'make -j8 -C chibi-scheme install'
|
||||||
|
sh 'snow-chibi install retropikzel.compile-r7rs'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('tap') {
|
||||||
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'COMPILE_R7RS=sagittarius compile-r7rs -o tap-test-program retropikzel/tap/test.scm'
|
||||||
|
sh './tap-test-program'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,10 @@
|
||||||
" compile-r7rs -o tap-test-program retropikzel/tap/test.scm")
|
" compile-r7rs -o tap-test-program retropikzel/tap/test.scm")
|
||||||
"./tap-test-program"))))
|
"./tap-test-program"))))
|
||||||
|
|
||||||
(map (lambda (scheme)
|
`((makings ,@(map (lambda (scheme)
|
||||||
`(makings ((name ,scheme)
|
`((name ,scheme)
|
||||||
(image ,(string-append "schemers/" scheme ":head"))
|
(image ,(string-append "schemers/" scheme ":head"))
|
||||||
(stages
|
(stages
|
||||||
(init ,@init)
|
(init ,@init)
|
||||||
(tap ,@(tap scheme))))))
|
(tap ,@(tap scheme)))))
|
||||||
'("chibi" "sagittarius")))
|
'("chibi" "sagittarius")))))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue