Skip to content

Commit 72b2847

Browse files
committed
[CI] Mute failing tests for Windows
Relates: elastic#73539
1 parent e036378 commit 72b2847

File tree

5 files changed

+27
-0
lines changed

5 files changed

+27
-0
lines changed

qa/smoke-test-plugins/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Side Public License, v 1.
77
*/
88

9+
10+
import org.apache.tools.ant.taskdefs.condition.Os
911
import org.elasticsearch.gradle.internal.MavenFilteringHack
1012
import org.elasticsearch.gradle.internal.info.BuildParams
1113

@@ -39,3 +41,7 @@ tasks.named("processTestResources").configure {
3941
inputs.properties(expansions)
4042
MavenFilteringHack.filter(it, expansions)
4143
}
44+
45+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
46+
tasks.named("integTest").configure {enabled = false }
47+
}

x-pack/plugin/repository-encrypted/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.apache.tools.ant.taskdefs.condition.Os
2+
13
evaluationDependsOn(xpackModule('core'))
24

35
apply plugin: 'elasticsearch.internal-es-plugin'
@@ -16,3 +18,7 @@ dependencies {
1618
compileOnly project(path: xpackModule('core'))
1719
testImplementation(testArtifact(project(xpackModule('core'))))
1820
}
21+
22+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
23+
tasks.named("internalClusterTest").configure {enabled = false }
24+
}

x-pack/plugin/repository-encrypted/qa/azure/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import org.apache.tools.ant.taskdefs.condition.Os
12

23
apply plugin: 'elasticsearch.internal-cluster-test'
34
apply plugin: 'elasticsearch.java'
@@ -6,3 +7,7 @@ dependencies {
67
internalClusterTestImplementation testArtifact(project(':plugins:repository-azure'), 'internalClusterTest')
78
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
89
}
10+
11+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
12+
tasks.named("internalClusterTest").configure {enabled = false }
13+
}

x-pack/plugin/repository-encrypted/qa/gcs/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import org.apache.tools.ant.taskdefs.condition.Os
12

23
apply plugin: 'elasticsearch.internal-cluster-test'
34
apply plugin: 'elasticsearch.java'
@@ -6,3 +7,7 @@ dependencies {
67
internalClusterTestImplementation testArtifact(project(':plugins:repository-gcs'), 'internalClusterTest')
78
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
89
}
10+
11+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
12+
tasks.named("internalClusterTest").configure {enabled = false }
13+
}

x-pack/plugin/repository-encrypted/qa/s3/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import org.apache.tools.ant.taskdefs.condition.Os
12

23
apply plugin: 'elasticsearch.internal-cluster-test'
34
apply plugin: 'elasticsearch.java'
@@ -6,3 +7,7 @@ dependencies {
67
internalClusterTestImplementation testArtifact(project(':plugins:repository-s3'), 'internalClusterTest')
78
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
89
}
10+
11+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
12+
tasks.named("internalClusterTest").configure {enabled = false }
13+
}

0 commit comments

Comments
 (0)