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 2019/03/27 21:21:53 UTC

[arrow] branch master updated: ARROW-5042: [Release] Use the correct dependency source in verification script

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 99ba3b2  ARROW-5042: [Release] Use the correct dependency source in verification script
99ba3b2 is described below

commit 99ba3b231045f9fda3412120c6c2b4267f5937f5
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Thu Mar 28 06:21:33 2019 +0900

    ARROW-5042: [Release] Use the correct dependency source in verification script
    
    We use Conda to install Python in verification script but we don't use
    Conda to install C++ dependencies. If we are in Conda environment, the
    default ARROW_DEPENDENCY_SOURCE is "CONDA". But it's not suitable for
    this case. We should use "AUTO". "AUTO" is the default
    ARROW_DEPENDENCY_SOURCE for non-Conda environment.
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #4057 from kou/release-use-auto-dependency-source and squashes the following commits:
    
    7e694065 <Kouhei Sutou>  Use the correct dependency source in verification script
---
 dev/release/verify-release-candidate.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 8d4cc52..035b967 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -214,6 +214,7 @@ ${ARROW_CMAKE_OPTIONS}
 -DCMAKE_BUILD_TYPE=release
 -DARROW_BUILD_TESTS=ON
 -DARROW_CUDA=${ARROW_CUDA}
+-DARROW_DEPENDENCY_SOURCE=AUTO
 "
   cmake $ARROW_CMAKE_OPTIONS ..