1
0
Fork 0

cleanup [ci: skip]

This commit is contained in:
Frank Celler 2017-07-01 09:11:49 +02:00
parent cf4368881d
commit 9fb464d3fc
1 changed files with 27 additions and 4 deletions

View File

@ -758,8 +758,8 @@ catch (exc) {
} }
try { try {
stage('build mac & windows') { stage('build mac') {
buildStepParallel(['mac', 'windows']) buildStepParallel(['mac'])
} }
} }
catch (exc) { catch (exc) {
@ -767,8 +767,26 @@ catch (exc) {
} }
try { try {
stage('tests mac & windows') { stage('tests mac') {
testStepParallel(['mac', 'windows'], ['cluster', 'singleserver']) testStepParallel(['mac'], ['cluster', 'singleserver'])
}
}
catch (exc) {
echo exc.toString()
}
try {
stage('build windows') {
buildStepParallel(['windows'])
}
}
catch (exc) {
echo exc.toString()
}
try {
stage('tests windows') {
testStepParallel(['windows'], ['cluster', 'singleserver'])
} }
} }
catch (exc) { catch (exc) {
@ -800,6 +818,11 @@ stage('result') {
result = result + "RESILIENCE ${kv.key}: ${kv.value}\n" result = result + "RESILIENCE ${kv.key}: ${kv.value}\n"
} }
if (result == "") {
result = "All tests passed!"
}
if (! (allBuildsSuccessful if (! (allBuildsSuccessful
&& allTestsSuccessful && allTestsSuccessful
&& allResiliencesSuccessful && allResiliencesSuccessful