Skip to content

Commit b958467

Browse files
committed
Mute docker packaging tests (DockerTests)
Tracked in #47639
1 parent 2ea8844 commit b958467

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-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
@@ -319,7 +319,8 @@ private List<ElasticsearchDistribution> configureDistributions(Project project,
319319
List<ElasticsearchDistribution> currentDistros = new ArrayList<>();
320320
List<ElasticsearchDistribution> upgradeDistros = new ArrayList<>();
321321

322-
for (Type type : Arrays.asList(Type.DEB, Type.RPM, Type.DOCKER)) {
322+
// Docker disabled for https://github.com/elastic/elasticsearch/issues/47639
323+
for (Type type : Arrays.asList(Type.DEB, Type.RPM /*,Type.DOCKER*/)) {
323324
for (Flavor flavor : Flavor.values()) {
324325
for (boolean bundledJdk : Arrays.asList(true, false)) {
325326
// We should never add a Docker distro with bundledJdk == false

qa/os/src/test/java/org/elasticsearch/packaging/test/DockerTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import org.junit.AfterClass;
2929
import org.junit.Before;
3030
import org.junit.BeforeClass;
31+
import org.junit.Ignore;
3132

3233
import java.nio.file.Files;
3334
import java.nio.file.Path;
@@ -54,6 +55,7 @@
5455
import static org.hamcrest.Matchers.emptyString;
5556
import static org.junit.Assume.assumeTrue;
5657

58+
@Ignore("https://github.com/elastic/elasticsearch/issues/47639")
5759
public class DockerTests extends PackagingTestCase {
5860
protected DockerShell sh;
5961

0 commit comments

Comments
 (0)