This is an automated email from the ASF dual-hosted git repository. kou pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-java.git
The following commit(s) were added to refs/heads/main by this push: new 47288d95 MINOR: Fix macOS JNI build (#689) 47288d95 is described below commit 47288d95f4cd2f8206dfd59198e48ee72f70667b Author: David Li <li.david...@gmail.com> AuthorDate: Mon Mar 24 04:55:35 2025 -0400 MINOR: Fix macOS JNI build (#689) ## What's Changed Update a sanity check in CI that's incorrectly failing the macOS JNI builds. Recent LLVM uses Z3. --- ci/scripts/jni_macos_build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/scripts/jni_macos_build.sh b/ci/scripts/jni_macos_build.sh index 1ad76266..65b255e2 100755 --- a/ci/scripts/jni_macos_build.sh +++ b/ci/scripts/jni_macos_build.sh @@ -153,6 +153,7 @@ archery linking check-dependencies \ --allow libncurses \ --allow libobjc \ --allow libz \ + --allow libz3 \ "arrow_cdata_jni/${normalized_arch}/libarrow_cdata_jni.dylib" \ "arrow_dataset_jni/${normalized_arch}/libarrow_dataset_jni.dylib" \ "arrow_orc_jni/${normalized_arch}/libarrow_orc_jni.dylib" \