You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2016/10/18 02:46:51 UTC

arrow git commit: ARROW-327: [Python] Remove conda builds from Travis CI setup

Repository: arrow
Updated Branches:
  refs/heads/master 676c32cce -> e2c0a1831


ARROW-327: [Python] Remove conda builds from Travis CI setup

We'll do these builds in conda-forge

Author: Wes McKinney <we...@twosigma.com>

Closes #178 from wesm/ARROW-327 and squashes the following commits:

1303d6e [Wes McKinney] Remove conda builds


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/e2c0a183
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/e2c0a183
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/e2c0a183

Branch: refs/heads/master
Commit: e2c0a18316504a0177129cb66b25a9dc54291587
Parents: 676c32c
Author: Wes McKinney <we...@twosigma.com>
Authored: Mon Oct 17 22:46:44 2016 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Mon Oct 17 22:46:44 2016 -0400

----------------------------------------------------------------------
 .travis.yml              | 18 -----------------
 ci/travis_conda_build.sh | 45 -------------------------------------------
 2 files changed, 63 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/e2c0a183/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 97229b1..a53756c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -41,24 +41,6 @@ matrix:
     script:
     - $TRAVIS_BUILD_DIR/ci/travis_script_cpp.sh
     - $TRAVIS_BUILD_DIR/ci/travis_script_python.sh
-  - compiler: gcc
-    env: ARROW_TEST_GROUP=packaging
-    os: linux
-    before_script:
-    - export CC="gcc-4.9"
-    - export CXX="g++-4.9"
-    script:
-    - $TRAVIS_BUILD_DIR/ci/travis_conda_build.sh
-  - os: osx
-    env: ARROW_TEST_GROUP=packaging
-    language: objective-c
-    osx_image: xcode6.4
-    compiler: clang
-    addons:
-    before_script:
-    before_install:
-    script:
-    - $TRAVIS_BUILD_DIR/ci/travis_conda_build.sh
   - language: java
     os: linux
     jdk: oraclejdk7

http://git-wip-us.apache.org/repos/asf/arrow/blob/e2c0a183/ci/travis_conda_build.sh
----------------------------------------------------------------------
diff --git a/ci/travis_conda_build.sh b/ci/travis_conda_build.sh
deleted file mode 100755
index 17a33ae..0000000
--- a/ci/travis_conda_build.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env bash
-
-#  Licensed 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. See accompanying LICENSE file.
-
-set -ex
-
-source $TRAVIS_BUILD_DIR/ci/travis_install_conda.sh
-
-# Build libarrow
-
-cd $TRAVIS_BUILD_DIR/cpp
-
-conda build conda.recipe --channel apache/channel/dev
-CONDA_PACKAGE=`conda build --output conda.recipe | grep bz2`
-
-if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then
-  anaconda --token $ANACONDA_TOKEN upload $CONDA_PACKAGE --user apache --channel dev;
-fi
-
-# Build pyarrow
-
-cd $TRAVIS_BUILD_DIR/python
-
-build_for_python_version() {
-  PY_VERSION=$1
-  conda build conda.recipe --python $PY_VERSION --channel apache/channel/dev
-  CONDA_PACKAGE=`conda build --python $PY_VERSION --output conda.recipe | grep bz2`
-
-  if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then
-	anaconda --token $ANACONDA_TOKEN upload $CONDA_PACKAGE --user apache --channel dev;
-  fi
-}
-
-build_for_python_version 2.7
-build_for_python_version 3.5