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:22:57 UTC

[arrow] branch master updated: ARROW-5041: [C++] add GTest_SOURCE=BUNDLED to verify-release-candidate.bat

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 b5f8426  ARROW-5041: [C++] add GTest_SOURCE=BUNDLED to verify-release-candidate.bat
b5f8426 is described below

commit b5f8426cce36ee97be149b28e356300688d3463d
Author: Benjamin Kietzman <be...@gmail.com>
AuthorDate: Thu Mar 28 06:22:35 2019 +0900

    ARROW-5041: [C++] add GTest_SOURCE=BUNDLED to verify-release-candidate.bat
    
    bundled GTest is currently required on Windows due to link issues with conda's GTest: https://github.com/apache/arrow/pull/3984
    
    Author: Benjamin Kietzman <be...@gmail.com>
    
    Closes #4056 from bkietz/5041-use-bundled-gtest-and-gmock-in-verify-re and squashes the following commits:
    
    c57b7444 <Benjamin Kietzman> add GTest_SOURCE=BUNDLED to verify-release-candidate.bat
---
 dev/release/verify-release-candidate.bat | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/release/verify-release-candidate.bat b/dev/release/verify-release-candidate.bat
index 7d060b7..5072112 100644
--- a/dev/release/verify-release-candidate.bat
+++ b/dev/release/verify-release-candidate.bat
@@ -72,6 +72,7 @@ cmake -G "%GENERATOR%" ^
       -DCMAKE_INSTALL_PREFIX=%ARROW_HOME% ^
       -DARROW_BOOST_USE_SHARED=ON ^
       -DARROW_BUILD_TESTS=ON ^
+      -DGTest_SOURCE=BUNDLED ^
       -DCMAKE_BUILD_TYPE=%CONFIGURATION% ^
       -DARROW_CXXFLAGS="/MP" ^
       -DARROW_PYTHON=ON ^