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 2018/12/10 15:28:54 UTC

[arrow] branch master updated: ARROW-3977: [Gandiva] fix label during ctest invoc

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

wesm 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 7a296bd  ARROW-3977: [Gandiva] fix label during ctest invoc
7a296bd is described below

commit 7a296bd597ab7061ff8f39280d3d6a9a694faf79
Author: Pindikura Ravindra <ra...@dremio.com>
AuthorDate: Mon Dec 10 09:28:47 2018 -0600

    ARROW-3977: [Gandiva] fix label during ctest invoc
    
    Author: Pindikura Ravindra <ra...@dremio.com>
    
    Closes #3139 from pravindra/ci and squashes the following commits:
    
    3372401c3 <Pindikura Ravindra> ARROW-3977:  temporary disable valgrind
    c51b23aff <Pindikura Ravindra> ARROW-3977:  fix label during ctest invoc
---
 .travis.yml                     | 3 ++-
 ci/travis_script_gandiva_cpp.sh | 5 +----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index b877e20..7489d72 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -110,7 +110,8 @@ matrix:
     env:
     - ARROW_TRAVIS_GANDIVA=1
     - ARROW_TRAVIS_USE_TOOLCHAIN=1
-    - ARROW_TRAVIS_VALGRIND=1
+    # ARROW-3979 temporarily disabled.
+    - ARROW_TRAVIS_VALGRIND=0
     - ARROW_BUILD_WARNING_LEVEL=CHECKIN
     - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
     before_script:
diff --git a/ci/travis_script_gandiva_cpp.sh b/ci/travis_script_gandiva_cpp.sh
index 4d0a9b7..f3c3793 100755
--- a/ci/travis_script_gandiva_cpp.sh
+++ b/ci/travis_script_gandiva_cpp.sh
@@ -23,10 +23,7 @@ source $TRAVIS_BUILD_DIR/ci/travis_env_common.sh
 
 pushd $CPP_BUILD_DIR
 
-PATH=$ARROW_BUILD_TYPE:$PATH ctest -j2 --output-on-failure -L gandiva,unittest
-
-# not running in parallel, since some of them are benchmarks
-PATH=$ARROW_BUILD_TYPE:$PATH ctest -VV -L gandiva,integ
+PATH=$ARROW_BUILD_TYPE:$PATH ctest -j2 --output-on-failure -L gandiva
 
 popd