Improving tests
This commit is contained in:
parent
30529da19e
commit
941c54486c
|
|
@ -48,9 +48,10 @@ pipeline {
|
|||
steps {
|
||||
script {
|
||||
params.LIBRARIES.split().each { LIBRARY ->
|
||||
stage(name: "${LIBRARY}", concurrency: 1) {
|
||||
stage("${LIBRARY}") {
|
||||
parallel params.R7RS_SCHEMES.collectEntries().each { SCHEME ->
|
||||
[(SCHEME): {
|
||||
lock {
|
||||
def IMG="${SCHEME}:head"
|
||||
if("${SCHEME}" == "chicken") {
|
||||
IMG="${SCHEME}:5"
|
||||
|
|
@ -60,6 +61,7 @@ pipeline {
|
|||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} test-r7rs-docker"
|
||||
}
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue