Skip to content

Commit

Permalink
Add comments about disabled tests and JVM args
Browse files Browse the repository at this point in the history
  • Loading branch information
zabetak committed Apr 29, 2024
1 parent 685075d commit c156046
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arrow/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ dependencies {
plugins.withType<JavaPlugin> {
tasks {
configureEach<Test> {
// 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")
}
Expand Down

0 comments on commit c156046

Please sign in to comment.