Skip to content

Commit

Permalink
Tweaks, not sure why failing
Browse files Browse the repository at this point in the history
Change-Id: Iab2bbacd6379407708b2f84594030573e9532862
  • Loading branch information
wesm committed Oct 17, 2016
1 parent 3fc6219 commit 1391c87
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions scripts/circleci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ conda-build:
CONDARC
)

REQUIREMENTS="numpy cython cmake boost arrow-cpp pytz python-dateutil"

cat << EOF | docker run -i \
-v ${ROOT_DIR}:/root_dir \
-a stdin -a stdout -a stderr \
Expand All @@ -30,16 +28,17 @@ cat << EOF | docker run -i \
export PYTHONUNBUFFERED=1
set -e
set -ex
echo "$config" > ~/.condarc
# A lock sometimes occurs with incomplete builds. The lock file is stored in build_artefacts.
conda clean --lock
export CONDA_ENV=pandas-test
export ENV_NAME=pandas-test
REQUIREMENTS="numpy cython cmake boost arrow-cpp pytz python-dateutil"
conda create -y -q -n $CONDA_ENV python=3.5
source activate $CONDA_ENV
conda create -y -q -n $ENV_NAME python=3.5
source activate $ENV_NAME
conda install --yes --quiet conda-forge-build-setup
source run_conda_forge_build_setup
Expand All @@ -49,8 +48,8 @@ conda install -y -q $REQUIREMENTS
mkdir test-build
cd test-build
export ARROW_HOME=~/.conda/envs/$CONDA_ENV
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.conda/envs/$CONDA_ENV/lib
export ARROW_HOME=~/.conda/envs/$ENV_NAME
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.conda/envs/$ENV_NAME/lib
cmake /root_dir || exit 1
make -j4 || exit 1
Expand Down

0 comments on commit 1391c87

Please sign in to comment.