LUCENE-8982: make native builds disabled by default (CI complains).

This commit is contained in:
Dawid Weiss 2020-11-16 17:23:21 +01:00
parent 73d5e7ae77
commit fd3ffd0d38
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
// This is the master switch to disable all tasks that compile
// native (cpp) code.
rootProject.ext {
buildNative = propertyOrDefault("build.native", true).toBoolean()
buildNative = propertyOrDefault("build.native", false).toBoolean()
}
// Explicitly list all projects that should be configured for native extensions.