File tree Expand file tree Collapse file tree
x-pack/plugin/repository-encrypted Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 * Side Public License, v 1.
77 */
88
9+
10+ import org.apache.tools.ant.taskdefs.condition.Os
911import org.elasticsearch.gradle.internal.MavenFilteringHack
1012import 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+ }
Original file line number Diff line number Diff line change 1+ import org.apache.tools.ant.taskdefs.condition.Os
2+
13evaluationDependsOn(xpackModule(' core' ))
24
35apply 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+ }
Original file line number Diff line number Diff line change 1+ import org.apache.tools.ant.taskdefs.condition.Os
12
23apply plugin : ' elasticsearch.internal-cluster-test'
34apply 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+ }
Original file line number Diff line number Diff line change 1+ import org.apache.tools.ant.taskdefs.condition.Os
12
23apply plugin : ' elasticsearch.internal-cluster-test'
34apply 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+ }
Original file line number Diff line number Diff line change 1+ import org.apache.tools.ant.taskdefs.condition.Os
12
23apply plugin : ' elasticsearch.internal-cluster-test'
34apply 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+ }
You can’t perform that action at this time.
0 commit comments