Skip to content

Commit 5c362a2

Browse files
authored
Disable packaging tests for arm ironbank docker image (#90478)
We've removed the ARM IronBank docker project (since we don't produce such an image). This pull request also ensures we don't attempt to run packaging tests against this missing distribution. Closes #90449
1 parent 3235b37 commit 5c362a2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,10 @@ private List<ElasticsearchDistribution> configureDistributions(Project project)
393393
continue;
394394
}
395395
}
396+
if (type == DOCKER_IRONBANK && architecture == Architecture.AARCH64) {
397+
// We don't produce an ARM IronBank Image
398+
continue;
399+
}
396400
currentDistros.add(
397401
createDistro(distributions, architecture, type, null, bundledJdk, VersionProperties.getElasticsearch())
398402
);

0 commit comments

Comments
 (0)