Making the build work
This commit is contained in:
parent
2e6b4ea25e
commit
beaf436e7b
|
@ -1,10 +1,5 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent any
|
||||||
dockerfile {
|
|
||||||
filename 'Dockerfile.jenkins'
|
|
||||||
args '--privileged'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
options {
|
options {
|
||||||
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
||||||
}
|
}
|
||||||
|
@ -16,6 +11,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
|
sh 'apt-get update && apt-get install -y make'
|
||||||
sh 'make'
|
sh 'make'
|
||||||
sh 'make install'
|
sh 'make install'
|
||||||
sh 'make SCHEME=sagittarius test-r6rs'
|
sh 'make SCHEME=sagittarius test-r6rs'
|
||||||
|
@ -25,6 +21,7 @@ pipeline {
|
||||||
stage("Test chez r6rs") {
|
stage("Test chez r6rs") {
|
||||||
steps {
|
steps {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'apt-get update && apt-get install -y make'
|
||||||
sh 'make SCHEME=chibi test-r6rs-docker'
|
sh 'make SCHEME=chibi test-r6rs-docker'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue