#!/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 arrow_dir=${1} source_dir=${1}/java cpp_build_dir=${2}/cpp/${ARROW_BUILD_TYPE:-debug} with_docs=${3:-false} 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 bintray and install them explicitly mvn_install="mvn install:install-file" wget="wget" bintray_base_url="https://dl.bintray.com/apache/arrow" bintray_dir="flatc-binary" group="com.github.icexelloss" artifact="flatc-linux-s390_64" ver="1.9.0" extension="exe" target=${artifact}-${ver}.${extension} ${wget} ${bintray_base_url}/${bintray_dir}/${ver}/${target} ${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dpackaging=${extension} -Dfile=$(pwd)/${target} bintray_dir="protoc-binary" group="com.google.protobuf" artifact="protoc" ver="3.7.1" classifier="linux-s390_64" extension="exe" target=${artifact}-${ver}-${classifier}.${extension} ${wget} ${bintray_base_url}/${bintray_dir}/${ver}/${target} ${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dclassifier=${classifier} -Dpackaging=${extension} -Dfile=$(pwd)/${target} # protoc requires libprotoc.so.18 libprotobuf.so.18 ${wget} ${bintray_base_url}/${bintray_dir}/${ver}/libprotoc.so.18 ${wget} ${bintray_base_url}/${bintray_dir}/${ver}/libprotobuf.so.18 mkdir -p ${ARROW_HOME}/lib cp lib*.so.18 ${ARROW_HOME}/lib export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ARROW_HOME}/lib bintray_dir="protoc-gen-grpc-java-binary" group="io.grpc" artifact="protoc-gen-grpc-java" ver="1.30.2" classifier="linux-s390_64" extension="exe" target=${artifact}-${ver}-${classifier}.${extension} ${wget} ${bintray_base_url}/${bintray_dir}/${ver}/${target} ${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dclassifier=${classifier} -Dpackaging=${extension} -Dfile=$(pwd)/${target} bintray_dir="netty-binary" group="io.netty" artifact="netty-transport-native-unix-common" ver="4.1.48.Final" classifier="linux-s390_64" extension="jar" target=${artifact}-${ver}-${classifier}.${extension} ${wget} ${bintray_base_url}/${bintray_dir}/${ver}/${target} ${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dclassifier=${classifier} -Dpackaging=${extension} -Dfile=$(pwd)/${target} artifact="netty-transport-native-epoll" extension="jar" target=${artifact}-${ver}-${classifier}.${extension} ${wget} ${bintray_base_url}/${bintray_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" # Use `2 * ncores` threads mvn="${mvn} -T 2C" pushd ${source_dir} ${mvn} install if [ "${ARROW_JAVA_SHADE_FLATBUFFERS}" == "ON" ]; then ${mvn} -Pshade-flatbuffers install fi if [ "${ARROW_GANDIVA_JAVA}" = "ON" ]; then ${mvn} -Darrow.cpp.build.dir=${cpp_build_dir} -Parrow-jni install fi if [ "${ARROW_PLASMA}" = "ON" ]; then pushd ${source_dir}/plasma ${mvn} clean install popd fi if [ "${with_docs}" == "true" ]; then ${mvn} -Dcheckstyle.skip=true install site fi popd