Improving tests
This commit is contained in:
parent
36f530d826
commit
7d352e9999
|
|
@ -28,13 +28,14 @@ pipeline {
|
|||
stage('Tests') {
|
||||
parallel {
|
||||
stage('R6RS x86_64 Debian') {
|
||||
steps {
|
||||
script {
|
||||
params.LIBRARIES.split().each { LIBRARY ->
|
||||
stage("${LIBRARY}") {
|
||||
stages {
|
||||
params.R6RS_SCHEMES.split().each { SCHEME ->
|
||||
def IMG="${SCHEME}:head"
|
||||
stage("${SCHEME} - ${LIBRARY}") {
|
||||
steps {
|
||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r6rs-docker"
|
||||
}
|
||||
|
|
@ -45,11 +46,13 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('R7RS x86_64 Debian') {
|
||||
steps {
|
||||
script {
|
||||
params.LIBRARIES.split().each { LIBRARY ->
|
||||
stage("${LIBRARY}") {
|
||||
stages {
|
||||
params.R7RS_SCHEMES.split().each { SCHEME ->
|
||||
def IMG="${SCHEME}:head"
|
||||
if("${SCHEME}" == "chicken") {
|
||||
|
|
@ -66,6 +69,7 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue