File tree 5 files changed +27
-0
lines changed
x-pack/plugin/repository-encrypted 5 files changed +27
-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,7 @@ tasks.named("processTestResources").configure {
39
41
inputs. properties(expansions)
40
42
MavenFilteringHack . filter(it, expansions)
41
43
}
44
+
45
+ if (Os . isFamily(Os . FAMILY_WINDOWS )) {
46
+ tasks. named(" integTest" ). configure {enabled = false }
47
+ }
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,7 @@ dependencies {
16
18
compileOnly project(path : xpackModule(' core' ))
17
19
testImplementation(testArtifact(project(xpackModule(' core' ))))
18
20
}
21
+
22
+ if (Os . isFamily(Os . FAMILY_WINDOWS )) {
23
+ tasks. named(" internalClusterTest" ). configure {enabled = false }
24
+ }
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,7 @@ 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
+ if (Os . isFamily(Os . FAMILY_WINDOWS )) {
12
+ tasks. named(" internalClusterTest" ). configure {enabled = false }
13
+ }
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,7 @@ 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
+ if (Os . isFamily(Os . FAMILY_WINDOWS )) {
12
+ tasks. named(" internalClusterTest" ). configure {enabled = false }
13
+ }
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,7 @@ 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
+ if (Os . isFamily(Os . FAMILY_WINDOWS )) {
12
+ tasks. named(" internalClusterTest" ). configure {enabled = false }
13
+ }
You can’t perform that action at this time.
0 commit comments