File tree 5 files changed +32
-0
lines changed
x-pack/plugin/repository-encrypted
5 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 6
6
* Side Public License, v 1.
7
7
*/
8
8
9
+
10
+ import org.apache.tools.ant.taskdefs.condition.Os
9
11
import org.elasticsearch.gradle.internal.MavenFilteringHack
10
12
import org.elasticsearch.gradle.internal.info.BuildParams
11
13
@@ -39,3 +41,8 @@ tasks.named("processTestResources").configure {
39
41
inputs. properties(expansions)
40
42
MavenFilteringHack . filter(it, expansions)
41
43
}
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
+
1
3
evaluationDependsOn(xpackModule(' core' ))
2
4
3
5
apply plugin : ' elasticsearch.internal-es-plugin'
@@ -16,3 +18,8 @@ dependencies {
16
18
compileOnly project(path : xpackModule(' core' ))
17
19
testImplementation(testArtifact(project(xpackModule(' core' ))))
18
20
}
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
1
2
2
3
apply plugin : ' elasticsearch.internal-cluster-test'
3
4
apply plugin : ' elasticsearch.java'
@@ -6,3 +7,8 @@ dependencies {
6
7
internalClusterTestImplementation testArtifact(project(' :plugins:repository-azure' ), ' internalClusterTest' )
7
8
internalClusterTestImplementation testArtifact(project(' :x-pack:plugin:repository-encrypted' ), ' test' )
8
9
}
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
1
2
2
3
apply plugin : ' elasticsearch.internal-cluster-test'
3
4
apply plugin : ' elasticsearch.java'
@@ -6,3 +7,8 @@ dependencies {
6
7
internalClusterTestImplementation testArtifact(project(' :plugins:repository-gcs' ), ' internalClusterTest' )
7
8
internalClusterTestImplementation testArtifact(project(' :x-pack:plugin:repository-encrypted' ), ' test' )
8
9
}
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
1
2
2
3
apply plugin : ' elasticsearch.internal-cluster-test'
3
4
apply plugin : ' elasticsearch.java'
@@ -6,3 +7,8 @@ dependencies {
6
7
internalClusterTestImplementation testArtifact(project(' :plugins:repository-s3' ), ' internalClusterTest' )
7
8
internalClusterTestImplementation testArtifact(project(' :x-pack:plugin:repository-encrypted' ), ' test' )
8
9
}
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