Skip to content

Commit f682552

Browse files
authored
Disable docker packaging tests again (#48883)
Per elastic/infra#15864, the Elasticsearch CI images are failing due to a packer_cache failure. This is because Gradle is trying to resolve a `.docker` file through the Ivy repository, which doesn't work. Disable the Docker tests again until we figure out the way forward.
1 parent 2f715d1 commit f682552

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildSrc/src/main/groovy/org/elasticsearch/gradle/test/DistroTestPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,8 @@ private List<ElasticsearchDistribution> configureDistributions(Project project,
352352
List<ElasticsearchDistribution> currentDistros = new ArrayList<>();
353353
List<ElasticsearchDistribution> upgradeDistros = new ArrayList<>();
354354

355-
for (Type type : List.of(Type.DEB, Type.RPM, Type.DOCKER)) {
355+
// Disable DOCKER due to https://github.com/elastic/infra/issues/15864
356+
for (Type type : List.of(Type.DEB, Type.RPM /*, Type.DOCKER */)) {
356357
for (Flavor flavor : Flavor.values()) {
357358
for (boolean bundledJdk : Arrays.asList(true, false)) {
358359
// All our Docker images include a bundled JDK so it doesn't make sense to test without one

0 commit comments

Comments
 (0)