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:
parent
5805560a2a
commit
df16ff777e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue