Skip to content

Commit

Permalink
ARROW-217: Fix Travis w.r.t conda 4.1.0 changes
Browse files Browse the repository at this point in the history
Travis is happy, fixes the problems we see with Travis in #85

Author: Uwe L. Korn <uwelk@xhochy.com>

Closes #90 from xhochy/fix-conda-show-channel-urls and squashes the following commits:

82e9840 [Uwe L. Korn] ARROW-217: Fix Travis w.r.t. conda 4.1.0 changes
  • Loading branch information
xhochy authored and wesm committed Jun 15, 2016
1 parent ec66ddd commit b4e0e93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/travis_before_script_cpp.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -e
set -ex

source $TRAVIS_BUILD_DIR/ci/travis_install_conda.sh
conda install -y --channel apache/channel/dev parquet-cpp
Expand Down
2 changes: 1 addition & 1 deletion ci/travis_conda_build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -e
set -ex

source $TRAVIS_BUILD_DIR/ci/travis_install_conda.sh

Expand Down
4 changes: 3 additions & 1 deletion ci/travis_install_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ export PATH="$MINICONDA/bin:$PATH"
conda update -y -q conda
conda info -a

conda config --set show_channel_urls yes
conda config --set show_channel_urls True
conda config --add channels https://repo.continuum.io/pkgs/free
conda config --add channels conda-forge
conda config --add channels apache
conda info -a

conda install --yes conda-build jinja2 anaconda-client

Expand Down

0 comments on commit b4e0e93

Please sign in to comment.