Skip to content

Commit c0a0f43

Browse files
committed
Don't test on fips
1 parent d142f44 commit c0a0f43

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

x-pack/plugin/ccr/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.elasticsearch.gradle.testclusters.StandaloneRestIntegTestTask
2+
13
apply plugin: 'elasticsearch.internal-es-plugin'
24
apply plugin: 'elasticsearch.internal-cluster-test'
35
apply plugin: 'elasticsearch.internal-java-rest-test'
@@ -58,3 +60,9 @@ tasks.named('internalClusterTestTestingConventions') {
5860
tasks.named("yamlRestTest") {
5961
usesDefaultDistribution("uses _xpack info api")
6062
}
63+
64+
tasks.withType(StandaloneRestIntegTestTask).configureEach {
65+
// These fail in CI but only when run as part of checkPart2 and not individually.
66+
// Tracked in : https://github.com/elastic/elasticsearch/issues/66661
67+
buildParams.withFipsEnabledOnly(it)
68+
}

x-pack/plugin/ccr/qa/multi-cluster/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@ dependencies {
1414

1515
tasks.named("javaRestTest") {
1616
usesDefaultDistribution("uses _xpack usage api")
17+
// These fail in CI but only when run as part of checkPart2 and not individually.
18+
// Tracked in : https://github.com/elastic/elasticsearch/issues/66661
19+
buildParams.withFipsEnabledOnly(it)
1720
}

0 commit comments

Comments
 (0)