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