Improving tests
This commit is contained in:
parent
0a56d28ff0
commit
36f530d826
|
|
@ -32,7 +32,6 @@ pipeline {
|
||||||
script {
|
script {
|
||||||
params.LIBRARIES.split().each { LIBRARY ->
|
params.LIBRARIES.split().each { LIBRARY ->
|
||||||
stage("${LIBRARY}") {
|
stage("${LIBRARY}") {
|
||||||
stages {
|
|
||||||
params.R6RS_SCHEMES.split().each { SCHEME ->
|
params.R6RS_SCHEMES.split().each { SCHEME ->
|
||||||
def IMG="${SCHEME}:head"
|
def IMG="${SCHEME}:head"
|
||||||
stage("${SCHEME} - ${LIBRARY}") {
|
stage("${SCHEME} - ${LIBRARY}") {
|
||||||
|
|
@ -46,13 +45,11 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
stage('R7RS x86_64 Debian') {
|
stage('R7RS x86_64 Debian') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
params.LIBRARIES.split().each { LIBRARY ->
|
params.LIBRARIES.split().each { LIBRARY ->
|
||||||
stage("${LIBRARY}") {
|
stage("${LIBRARY}") {
|
||||||
stages {
|
|
||||||
params.R7RS_SCHEMES.split().each { SCHEME ->
|
params.R7RS_SCHEMES.split().each { SCHEME ->
|
||||||
def IMG="${SCHEME}:head"
|
def IMG="${SCHEME}:head"
|
||||||
if("${SCHEME}" == "chicken") {
|
if("${SCHEME}" == "chicken") {
|
||||||
|
|
@ -69,7 +66,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue