You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2018/11/01 03:36:14 UTC

[arrow] branch master updated: ARROW-3659: [CI] Fix Travis matrix entry 2 documentation to use gcc

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new c61f882  ARROW-3659: [CI] Fix Travis matrix entry 2 documentation to use gcc
c61f882 is described below

commit c61f882f0eb23530d2b2e8543f6c4bf6d64d1283
Author: Philipp Moritz <pc...@gmail.com>
AuthorDate: Thu Nov 1 12:36:02 2018 +0900

    ARROW-3659: [CI] Fix Travis matrix entry 2 documentation to use gcc
    
    This is a little subtle and is needed because of the order in which Travis evaluates the command line variable definitions (see the JIRA issue).
    
    I also needed to remove a warning due to this: https://github.com/cython/cython/issues/2269
    We might be able to bring the warning back once we can depend on cython with https://github.com/cython/cython/pull/2669
    
    Author: Philipp Moritz <pc...@gmail.com>
    
    Closes #2878 from pcmoritz/use-clang and squashes the following commits:
    
    d41c66cc <Philipp Moritz> update
    a42c1419 <Philipp Moritz> install clang tools
    60961df3 <Philipp Moritz> use clang in build matrix 2
---
 .travis.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 709707f..4635711 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -62,7 +62,7 @@ matrix:
     - $TRAVIS_BUILD_DIR/ci/travis_install_clang_tools.sh
     script:
     - $TRAVIS_BUILD_DIR/ci/travis_lint.sh
-  # C++ & Python w/ clang 6.0
+  # C++ & Python w/ gcc 4.9
   - compiler: gcc
     language: cpp
     os: linux
@@ -80,8 +80,7 @@ matrix:
     - ARROW_TRAVIS_JAVA_BUILD_ONLY=1
     # ARROW-2999 Benchmarks are disabled in Travis CI for the time being
     # - ARROW_TRAVIS_PYTHON_BENCHMARKS=1
-    - CC="clang-6.0"
-    - CXX="clang++-6.0"
+    - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
     before_script:
     # (ARROW_CI_CPP_AFFECTED implies ARROW_CI_PYTHON_AFFECTED)
     - if [ $ARROW_CI_PYTHON_AFFECTED != "1" ]; then exit; fi