mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-24 23:27:25 -04:00
[CI] Mute failing tests for Windows (#73709)
(cherry picked from commit 873095f58a
)
This commit is contained in:
parent
b636a0af02
commit
ebc08d44bc
2 changed files with 14 additions and 0 deletions
|
@ -6,6 +6,8 @@
|
||||||
* Side Public License, v 1.
|
* Side Public License, v 1.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
import org.apache.tools.ant.taskdefs.condition.Os
|
||||||
import org.elasticsearch.gradle.internal.MavenFilteringHack
|
import org.elasticsearch.gradle.internal.MavenFilteringHack
|
||||||
import org.elasticsearch.gradle.internal.info.BuildParams
|
import org.elasticsearch.gradle.internal.info.BuildParams
|
||||||
|
|
||||||
|
@ -39,3 +41,8 @@ tasks.named("processTestResources").configure {
|
||||||
inputs.properties(expansions)
|
inputs.properties(expansions)
|
||||||
MavenFilteringHack.filter(it, expansions)
|
MavenFilteringHack.filter(it, expansions)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||||
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||||
|
tasks.named("integTest").configure {enabled = false }
|
||||||
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import org.apache.tools.ant.taskdefs.condition.Os
|
||||||
|
|
||||||
evaluationDependsOn(xpackModule('core'))
|
evaluationDependsOn(xpackModule('core'))
|
||||||
|
|
||||||
apply plugin: 'elasticsearch.internal-es-plugin'
|
apply plugin: 'elasticsearch.internal-es-plugin'
|
||||||
|
@ -29,3 +31,8 @@ dependencies {
|
||||||
// for encrypted GCS repository integ tests
|
// for encrypted GCS repository integ tests
|
||||||
internalClusterTestRuntimeOnly 'com.google.guava:guava:26.0-jre'
|
internalClusterTestRuntimeOnly 'com.google.guava:guava:26.0-jre'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||||
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||||
|
tasks.named("internalClusterTest").configure {enabled = false }
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue