Files
datafusion/ci/scripts/python_build.sh
T
Antoine Pitrou 918080c4e3 ARROW-6954: [Python] [CI] Add Python 3.8 to CI matrix
Also use a separate conda environment rather than installing everything
in the base conda environment, as conda can complain about conflicts.

Closes #5877 from pitrou/ARROW-6954-py38-ci and squashes the following commits:

0f411a482 <Krisztián Szűcs> Remove pandas master build for python 2.7 because pandas has already dropped support
9924be5bd <Krisztián Szűcs> Fix argument validation for install scripts
0ef0ae453 <Krisztián Szűcs> Fix conda-r image
5737cddd5 <Krisztián Szűcs> Missing CONDA_PREFIX
7b6bd7c14 <Krisztián Szűcs> Use a default conda environment other than base
e620b3b3f <Antoine Pitrou> ARROW-6954:   Add Python 3.8 to CI matrix

Lead-authored-by: Antoine Pitrou <antoine@python.org>
Co-authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
2019-11-26 15:37:47 +01:00

47 lines
1.7 KiB
Bash
Executable 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
source_dir=${1}/python
build_dir=${2:-${source_dir}/build}
export PYARROW_CMAKE_GENERATOR=${CMAKE_GENERATOR:-Ninja}
export PYARROW_BUILD_TYPE=${CMAKE_BUILD_TYPE:-debug}
export PYARROW_WITH_S3=${ARROW_S3:-OFF}
export PYARROW_WITH_ORC=${ARROW_ORC:-OFF}
export PYARROW_WITH_CUDA=${ARROW_CUDA:-OFF}
export PYARROW_WITH_FLIGHT=${ARROW_FLIGHT:-OFF}
export PYARROW_WITH_PLASMA=${ARROW_PLASMA:-OFF}
export PYARROW_WITH_GANDIVA=${ARROW_GANDIVA:-OFF}
export PYARROW_WITH_PARQUET=${ARROW_PARQUET:-OFF}
export LD_LIBRARY_PATH=${ARROW_HOME}/lib:${LD_LIBRARY_PATH}
pushd ${source_dir}
relative_build_dir=$(realpath --relative-to=. $build_dir)
# not nice, but prevents mutating the mounted the source directory for docker
python setup.py build --build-base $build_dir \
install --single-version-externally-managed \
--record $relative_build_dir/record.txt
popd