| #!/usr/bin/env bash |
| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| set -euo pipefail |
| |
| # shellcheck source=ci/scripts/util_log.sh |
| . "$(dirname "${0}")/util_log.sh" |
| |
| github_actions_group_begin "Prepare arguments" |
| source_dir=${1} |
| arrow_install_dir=${2} |
| build_dir=${3}/java_jni |
| # The directory where the final binaries will be stored when scripts finish |
| dist_dir=${4} |
| prefix_dir="${build_dir}/java-jni" |
| github_actions_group_end |
| |
| github_actions_group_begin "Clear output directories and leftovers" |
| rm -rf "${build_dir}" |
| github_actions_group_end |
| |
| github_actions_group_begin "Building Arrow Java C Data Interface native library" |
| |
| case "$(uname)" in |
| Linux) |
| n_jobs=$(nproc) |
| ;; |
| Darwin) |
| n_jobs=$(sysctl -n hw.logicalcpu) |
| ;; |
| *) |
| n_jobs=${NPROC:-1} |
| ;; |
| esac |
| |
| : "${ARROW_JAVA_BUILD_TESTS:=${ARROW_BUILD_TESTS:-ON}}" |
| : "${CMAKE_BUILD_TYPE:=release}" |
| read -ra EXTRA_CMAKE_OPTIONS <<<"${JAVA_JNI_CMAKE_ARGS:-}" |
| cmake \ |
| -S "${source_dir}" \ |
| -B "${build_dir}" \ |
| -DARROW_JAVA_JNI_ENABLE_DATASET="${ARROW_DATASET:-OFF}" \ |
| -DARROW_JAVA_JNI_ENABLE_GANDIVA="${ARROW_GANDIVA:-OFF}" \ |
| -DARROW_JAVA_JNI_ENABLE_ORC="${ARROW_ORC:-OFF}" \ |
| -DBUILD_TESTING="${ARROW_JAVA_BUILD_TESTS}" \ |
| -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" \ |
| -DCMAKE_PREFIX_PATH="${arrow_install_dir}" \ |
| -DCMAKE_INSTALL_PREFIX="${prefix_dir}" \ |
| -DCMAKE_UNITY_BUILD="${CMAKE_UNITY_BUILD:-OFF}" \ |
| -DProtobuf_USE_STATIC_LIBS=ON \ |
| -GNinja \ |
| "${EXTRA_CMAKE_OPTIONS[@]}" |
| cmake --build "${build_dir}" --verbose |
| if [ "${ARROW_JAVA_BUILD_TESTS}" = "ON" ]; then |
| ctest \ |
| --output-on-failure \ |
| --parallel "${n_jobs}" \ |
| --test-dir "${build_dir}" \ |
| --timeout 300 |
| fi |
| cmake --build "${build_dir}" --target install |
| |
| github_actions_group_end |
| |
| github_actions_group_begin "Copying artifacts" |
| mkdir -p "${dist_dir}" |
| # For Windows. *.dll are installed into bin/ on Windows. |
| if [ -d "${prefix_dir}/bin" ]; then |
| mv "${prefix_dir}"/bin/* "${dist_dir}"/ |
| else |
| mv "${prefix_dir}"/lib/* "${dist_dir}"/ |
| fi |
| github_actions_group_end |