Improve testing
This commit is contained in:
parent
4501ccac4b
commit
7bf3b69fd3
|
|
@ -32,7 +32,7 @@ pipeline {
|
|||
params.R6RS_SCHEMES.split().each { SCHEME ->
|
||||
stage("${SCHEME} ${LIBRARY}") {
|
||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker"
|
||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs test-docker"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -47,7 +47,7 @@ pipeline {
|
|||
params.R7RS_SCHEMESsplit().each { SCHEME ->
|
||||
stage("${SCHEME} ${LIBRARY}") {
|
||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs run-test-docker"
|
||||
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs test-docker"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue