Disable docker packaging tests again (#48896)

Backport of #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.
This commit is contained in:
Rory Hunter 2019-11-07 14:28:33 +00:00 committed by GitHub
parent 5805560a2a
commit df16ff777e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -353,7 +353,8 @@ public class DistroTestPlugin implements Plugin<Project> {
List<ElasticsearchDistribution> currentDistros = new ArrayList<>();
List<ElasticsearchDistribution> upgradeDistros = new ArrayList<>();
for (Type type : Arrays.asList(Type.DEB, Type.RPM, Type.DOCKER)) {
// Disable DOCKER due to https://github.com/elastic/infra/issues/15864
for (Type type : Arrays.asList(Type.DEB, Type.RPM /*, Type.DOCKER */)) {
for (Flavor flavor : Flavor.values()) {
for (boolean bundledJdk : Arrays.asList(true, false)) {
// All our Docker images include a bundled JDK so it doesn't make sense to test without one