Making the build work
This commit is contained in:
parent
bfd98d5b40
commit
d51d67bd8d
|
@ -5,7 +5,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=sagittarius' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=sagittarius' } }
|
||||||
steps {
|
steps {
|
||||||
sh 'make'
|
sh 'make'
|
||||||
sh 'make install'
|
sh 'make install'
|
||||||
|
@ -14,7 +14,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test chez r6rs") {
|
stage("Test chez r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=chezsceme' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=chezsceme' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -23,7 +23,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test chibi r7rs") {
|
stage("Test chibi r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=chibi' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=chibi' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -32,7 +32,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test cyclone r7rs") {
|
stage("Test cyclone r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=cyclone' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=cyclone' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -41,7 +41,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test foment r7rs") {
|
stage("Test foment r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=foment' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=foment' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -50,7 +50,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test gauche r7rs") {
|
stage("Test gauche r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=gauche' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=gauche' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -59,7 +59,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test guile r6rs") {
|
stage("Test guile r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=guile' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=guile' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -68,7 +68,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test guile r7rs") {
|
stage("Test guile r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=guile' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=guile' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -77,7 +77,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test ikarus r6rs") {
|
stage("Test ikarus r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=ikarus' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=ikarus' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -86,7 +86,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test ironscheme r6rs") {
|
stage("Test ironscheme r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=ironscheme' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=ironscheme' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -95,7 +95,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test kawa r7rs") {
|
stage("Test kawa r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=kawa' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=kawa' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -104,7 +104,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test larceny r6rs") {
|
stage("Test larceny r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=larceny' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=larceny' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -113,7 +113,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test larceny r7rs") {
|
stage("Test larceny r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=larceny' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=larceny' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -122,7 +122,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test loko r6rs") {
|
stage("Test loko r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=loko' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=loko' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -131,7 +131,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test loko r7rs") {
|
stage("Test loko r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=loko' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=loko' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -140,7 +140,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test mit-scheme r7rs") {
|
stage("Test mit-scheme r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=mit-scheme' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=mit-scheme' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -149,7 +149,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test mosh r6rs") {
|
stage("Test mosh r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=mosh' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=mosh' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -158,7 +158,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test mosh r7rs") {
|
stage("Test mosh r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=mosh' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=mosh' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -167,7 +167,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test sagittarius r6rs") {
|
stage("Test sagittarius r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=sagittarius' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=sagittarius' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'apt-get update && apt-get install -y make libuv1'
|
sh 'apt-get update && apt-get install -y make libuv1'
|
||||||
|
@ -177,7 +177,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test sagittarius r7rs") {
|
stage("Test sagittarius r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=sagittarius' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=sagittarius' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -186,7 +186,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test skint r7rs") {
|
stage("Test skint r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=skint' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=skint' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -195,7 +195,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test tr7 r7rs") {
|
stage("Test tr7 r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=tr7' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=tr7' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -204,7 +204,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test ypsilon r6rs") {
|
stage("Test ypsilon r6rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=ypsilon' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=ypsilon' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
@ -213,7 +213,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test ypsilon r7rs") {
|
stage("Test ypsilon r7rs") {
|
||||||
agent { dockerfile { filename 'Dockerfile'; args '--user=root --build-arg COMPILE_R7RS=ypsilon' } }
|
agent { dockerfile { filename 'Dockerfile'; args '--user=root'; additionalBuildArgs '--build-arg COMPILE_R7RS=ypsilon' } }
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh 'make && make install'
|
sh 'make && make install'
|
||||||
|
|
Loading…
Reference in New Issue