Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7506C200B84 for ; Tue, 6 Sep 2016 07:59:07 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 71D04160ACC; Tue, 6 Sep 2016 05:59:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B9262160ABC for ; Tue, 6 Sep 2016 07:59:06 +0200 (CEST) Received: (qmail 85546 invoked by uid 500); 6 Sep 2016 05:59:05 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 85536 invoked by uid 99); 6 Sep 2016 05:59:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Sep 2016 05:59:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BADDFE08B7; Tue, 6 Sep 2016 05:59:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: uwe@apache.org To: commits@parquet.apache.org Message-Id: <6a2e5958fcdc45ada1b5a92180e0e5fc@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: parquet-cpp git commit: PARQUET-709: Fix conda dev artifact builds Date: Tue, 6 Sep 2016 05:59:05 +0000 (UTC) archived-at: Tue, 06 Sep 2016 05:59:07 -0000 Repository: parquet-cpp Updated Branches: refs/heads/master 6a06dcca8 -> e1b3415d0 PARQUET-709: Fix conda dev artifact builds Author: Wes McKinney Closes #153 from wesm/PARQUET-709 and squashes the following commits: 5a70232 [Wes McKinney] Install miniconda in a smaller prefix to avoid conda-build 2.0 issues Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/e1b3415d Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/e1b3415d Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/e1b3415d Branch: refs/heads/master Commit: e1b3415d047b304e47beffbbcc92907b4ef21158 Parents: 6a06dcc Author: Wes McKinney Authored: Tue Sep 6 07:58:33 2016 +0200 Committer: Uwe L. Korn Committed: Tue Sep 6 07:58:33 2016 +0200 ---------------------------------------------------------------------- ci/travis_conda_build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/e1b3415d/ci/travis_conda_build.sh ---------------------------------------------------------------------- diff --git a/ci/travis_conda_build.sh b/ci/travis_conda_build.sh index d72b2fe..76fb4ca 100755 --- a/ci/travis_conda_build.sh +++ b/ci/travis_conda_build.sh @@ -9,17 +9,19 @@ else fi wget -O miniconda.sh $MINICONDA_URL -MINICONDA=$TRAVIS_BUILD_DIR/miniconda +MINICONDA=$HOME/miniconda bash miniconda.sh -b -p $MINICONDA export PATH="$MINICONDA/bin:$PATH" + conda update -y -q conda +conda install -y -q conda-build conda info -a conda config --set show_channel_urls yes conda config --add channels conda-forge conda config --add channels apache -conda install --yes conda-build jinja2 anaconda-client +conda install --yes jinja2 anaconda-client cd $TRAVIS_BUILD_DIR