blob: 212ec6eb11476e4e66657f9d55a53f3f8a19aef3 [file]
#!/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 -ex
if [[ "${ARROW_JAVA_BUILD:-ON}" != "ON" ]]; then
exit
fi
arrow_dir=${1}
source_dir=${1}/java
build_dir=${2}
java_jni_dist_dir=${3}
: ${BUILD_DOCS_JAVA:=OFF}
if [[ "$(uname -s)" == "Linux" ]] && [[ "$(uname -m)" == "s390x" ]]; then
# Since some files for s390_64 are not available at maven central,
# download pre-build files from Artifactory and install them explicitly
mvn_install="mvn clean install:install-file"
wget="wget"
artifactory_base_url="https://apache.jfrog.io/artifactory/arrow"
artifactory_dir="protoc-binary"
group="com.google.protobuf"
artifact="protoc"
ver="21.2"
classifier="linux-s390_64"
extension="exe"
# target=${artifact}-${ver}-${classifier}.${extension}
target=${artifact}
${wget} ${artifactory_base_url}/${artifactory_dir}/${ver}/${target}
${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dclassifier=${classifier} -Dpackaging=${extension} -Dfile=$(pwd)/${target}
# protoc requires libprotoc.so.* libprotobuf.so.*
libver="32"
${wget} ${artifactory_base_url}/${artifactory_dir}/${ver}/libprotoc.so.${libver}
${wget} ${artifactory_base_url}/${artifactory_dir}/${ver}/libprotobuf.so.${libver}
mkdir -p ${ARROW_HOME}/lib
cp lib*.so.${libver} ${ARROW_HOME}/lib
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ARROW_HOME}/lib
artifactory_dir="protoc-gen-grpc-java-binary"
group="io.grpc"
artifact="protoc-gen-grpc-java"
ver="1.47.0"
classifier="linux-s390_64"
extension="exe"
# target=${artifact}-${ver}-${classifier}.${extension}
target=${artifact}
${wget} ${artifactory_base_url}/${artifactory_dir}/${ver}/${target}
${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dclassifier=${classifier} -Dpackaging=${extension} -Dfile=$(pwd)/${target}
fi
mvn="mvn -B -DskipTests -Drat.skip=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
if [ $ARROW_JAVA_SKIP_GIT_PLUGIN ]; then
mvn="${mvn} -Dmaven.gitcommitid.skip=true"
fi
# https://github.com/apache/arrow/issues/41429
# TODO: We want to out-of-source build. This is a workaround. We copy
# all needed files to the build directory from the source directory
# and build in the build directory.
mkdir -p ${build_dir}
rm -rf ${build_dir}/format
cp -aL ${arrow_dir}/format ${build_dir}/
rm -rf ${build_dir}/java
cp -aL ${source_dir} ${build_dir}/
pushd ${build_dir}/java
if [ "${ARROW_JAVA_SHADE_FLATBUFFERS}" == "ON" ]; then
mvn="${mvn} -Pshade-flatbuffers"
fi
if [ "${ARROW_JAVA_CDATA}" = "ON" ]; then
mvn="${mvn} -Darrow.c.jni.dist.dir=${java_jni_dist_dir} -Parrow-c-data"
fi
if [ "${ARROW_JAVA_JNI}" = "ON" ]; then
mvn="${mvn} -Darrow.cpp.build.dir=${java_jni_dist_dir} -Parrow-jni"
fi
# Use `2 * ncores` threads
${mvn} -T 2C clean install
if [ "${BUILD_DOCS_JAVA}" == "ON" ]; then
# HTTP pooling is turned of to avoid download issues https://issues.apache.org/jira/browse/ARROW-11633
# GH-43378: Maven site plugins not compatible with multithreading
mkdir -p ${build_dir}/docs/java/reference
${mvn} -Dcheckstyle.skip=true -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false clean install site
rsync -a target/site/apidocs/ ${build_dir}/docs/java/reference
fi
popd