Improving tests
This commit is contained in:
parent
13291c9f80
commit
b77f3788d0
|
|
@ -32,10 +32,8 @@ pipeline {
|
||||||
parallel params.R6RS_SCHEMES.split().collectEntries { SCHEME ->
|
parallel params.R6RS_SCHEMES.split().collectEntries { SCHEME ->
|
||||||
[(SCHEME): {
|
[(SCHEME): {
|
||||||
def IMG="${SCHEME}:head"
|
def IMG="${SCHEME}:head"
|
||||||
stage("${SCHEME} - ${LIBRARY}") {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r6rs-docker"
|
||||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r6rs-docker"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
|
@ -55,10 +53,8 @@ pipeline {
|
||||||
if("${SCHEME}" == "chicken") {
|
if("${SCHEME}" == "chicken") {
|
||||||
IMG="${SCHEME}:5"
|
IMG="${SCHEME}:5"
|
||||||
}
|
}
|
||||||
stage("${SCHEME} - ${LIBRARY}") {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r7rs-docker"
|
||||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r7rs-docker"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue