Skip to content

Commit 873095f

Browse files
authored
[CI] Mute failing tests for Windows (#73709)
1 parent 51fd95d commit 873095f

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

qa/smoke-test-plugins/build.gradle

Lines changed: 7 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,8 @@ tasks.named("processTestResources").configure {
3941
inputs.properties(expansions)
4042
MavenFilteringHack.filter(it, expansions)
4143
}
44+
45+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
46+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
47+
tasks.named("integTest").configure {enabled = false }
48+
}

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

Lines changed: 7 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,8 @@ dependencies {
1618
compileOnly project(path: xpackModule('core'))
1719
testImplementation(testArtifact(project(xpackModule('core'))))
1820
}
21+
22+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
23+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
24+
tasks.named("internalClusterTest").configure {enabled = false }
25+
}

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

Lines changed: 6 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,8 @@ dependencies {
67
internalClusterTestImplementation testArtifact(project(':plugins:repository-azure'), 'internalClusterTest')
78
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
89
}
10+
11+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
12+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
13+
tasks.named("internalClusterTest").configure {enabled = false }
14+
}

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

Lines changed: 6 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,8 @@ dependencies {
67
internalClusterTestImplementation testArtifact(project(':plugins:repository-gcs'), 'internalClusterTest')
78
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
89
}
10+
11+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
12+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
13+
tasks.named("internalClusterTest").configure {enabled = false }
14+
}

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

Lines changed: 6 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,8 @@ dependencies {
67
internalClusterTestImplementation testArtifact(project(':plugins:repository-s3'), 'internalClusterTest')
78
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
89
}
10+
11+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
12+
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
13+
tasks.named("internalClusterTest").configure {enabled = false }
14+
}

0 commit comments

Comments
 (0)