diff --git a/arrow/build.gradle.kts b/arrow/build.gradle.kts index 9461d93c30ef..ecbe01e2932d 100644 --- a/arrow/build.gradle.kts +++ b/arrow/build.gradle.kts @@ -37,7 +37,11 @@ dependencies { plugins.withType { tasks { configureEach { + // Tests disabled on Windows due to failures. Arrow is not tested on Windows: + // https://arrow.apache.org/docs/java/install.html#system-compatibility enabled = !OperatingSystem.current().isWindows + // The following JVM options are required when using certain JDKs >= 9 + // https://arrow.apache.org/docs/java/install.html#java-compatibility jvmArgs("-XX:+IgnoreUnrecognizedVMOptions") jvmArgs("--add-opens=java.base/java.nio=ALL-UNNAMED") }