Skip to content

Commit aabe0a3

Browse files
authored
Don't run BWC plugin setup tests on Windows (#111166)
1 parent 0c472eb commit aabe0a3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPluginFuncTest.groovy

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@
99
package org.elasticsearch.gradle.internal
1010

1111
import org.elasticsearch.gradle.Architecture
12+
import org.elasticsearch.gradle.OS
1213
import org.elasticsearch.gradle.fixtures.AbstractGitAwareGradleFuncTest
1314
import org.gradle.testkit.runner.TaskOutcome
1415
import spock.lang.IgnoreIf
1516
import spock.lang.Unroll
1617

1718
/*
18-
* Test is ignored on ARM since this test case tests the ability to build certain older BWC branches that we don't support on ARM
19+
* Test is ignored on ARM since this test case tests the ability to build certain older BWC branches that we don't support on ARM.
20+
* We also ignore on Windows since we don't run BWC tests on that platform anyway.
1921
*/
2022

21-
@IgnoreIf({ Architecture.current() == Architecture.AARCH64 })
23+
@IgnoreIf({ Architecture.current() == Architecture.AARCH64 || OS.current() == OS.WINDOWS })
2224
class InternalDistributionBwcSetupPluginFuncTest extends AbstractGitAwareGradleFuncTest {
2325

2426
def setup() {

0 commit comments

Comments
 (0)