Skip to content

Commit

Permalink
disable JavaFX plugin test on Windows ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
xzel23 committed Sep 21, 2024
1 parent 3a8575e commit ed73d4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/groovy/org/beryx/jlink/JlinkPluginSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import org.gradle.testkit.runner.BuildResult
import org.gradle.testkit.runner.GradleRunner
import org.gradle.testkit.runner.TaskOutcome
import spock.lang.Ignore
import spock.lang.IgnoreIf
import spock.lang.Specification
import spock.lang.TempDir
import spock.lang.Unroll
Expand Down Expand Up @@ -123,7 +124,8 @@ class JlinkPluginSpec extends Specification {
'modular.example.hello' | '7.6' | 'run-hello' | null | null | 'run-hello'
}

@Unroll
// Ignore on Windows ARM because the JavaFx plugin does not support that platform yet
@IgnoreIf({ OperatingSystem.current.isWindows() && System.getProperty("os.arch").contains("aarch64") }) @Unroll
def "should create runtime image of project #projectDir with Gradle #gradleVersion"() {
when:
setUpBuild(projectDir)
Expand Down

0 comments on commit ed73d4e

Please sign in to comment.