mirror of https://gitee.com/bigwinds/arangodb
cleanup [ci: skip]
This commit is contained in:
parent
cf4368881d
commit
9fb464d3fc
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue