mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
parent
2ea8844b17
commit
b9584672a4
2 changed files with 4 additions and 1 deletions
|
@ -319,7 +319,8 @@ public class DistroTestPlugin implements Plugin<Project> {
|
||||||
List<ElasticsearchDistribution> currentDistros = new ArrayList<>();
|
List<ElasticsearchDistribution> currentDistros = new ArrayList<>();
|
||||||
List<ElasticsearchDistribution> upgradeDistros = new ArrayList<>();
|
List<ElasticsearchDistribution> upgradeDistros = new ArrayList<>();
|
||||||
|
|
||||||
for (Type type : Arrays.asList(Type.DEB, Type.RPM, Type.DOCKER)) {
|
// Docker disabled for https://github.com/elastic/elasticsearch/issues/47639
|
||||||
|
for (Type type : Arrays.asList(Type.DEB, Type.RPM /*,Type.DOCKER*/)) {
|
||||||
for (Flavor flavor : Flavor.values()) {
|
for (Flavor flavor : Flavor.values()) {
|
||||||
for (boolean bundledJdk : Arrays.asList(true, false)) {
|
for (boolean bundledJdk : Arrays.asList(true, false)) {
|
||||||
// We should never add a Docker distro with bundledJdk == false
|
// We should never add a Docker distro with bundledJdk == false
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.elasticsearch.packaging.util.Shell.Result;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
|
@ -54,6 +55,7 @@ import static org.hamcrest.CoreMatchers.is;
|
||||||
import static org.hamcrest.Matchers.emptyString;
|
import static org.hamcrest.Matchers.emptyString;
|
||||||
import static org.junit.Assume.assumeTrue;
|
import static org.junit.Assume.assumeTrue;
|
||||||
|
|
||||||
|
@Ignore("https://github.com/elastic/elasticsearch/issues/47639")
|
||||||
public class DockerTests extends PackagingTestCase {
|
public class DockerTests extends PackagingTestCase {
|
||||||
protected DockerShell sh;
|
protected DockerShell sh;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue