Disable reindex against 0.90 on mac (#51449)

We still test remote reindex against version 0.90. This failed on mac a
few times and rather than spend time investigating this, we no longer
test remote reindex against 0.90 on mac.

Closes #51202
This commit is contained in:
Henning Andersen 2020-01-27 12:40:27 +01:00 committed by Henning Andersen
parent 49bde5d286
commit 9085024e1d
1 changed files with 7 additions and 1 deletions

View File

@ -101,7 +101,13 @@ if (Os.isFamily(Os.FAMILY_WINDOWS)) {
} else {
/* Set up tasks to unzip and run the old versions of ES before running the
* integration tests. */
for (String version : ['2', '1', '090']) {
def versions = ['2', '1', '090']
if (Os.isFamily(Os.FAMILY_MAC)) {
// 0.90 fails sometimes on mac, given that it is so old, let us disable it
// see: https://github.com/elastic/elasticsearch/issues/51202
versions = ['2', '1']
}
for (String version : versions) {
Task unzip = task("unzipEs${version}", type: Sync) {
Configuration oldEsDependency = configurations['es' + version]
dependsOn oldEsDependency