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 2019/07/02 04:17:26 UTC

[arrow] branch master updated: [Release] Test Arrow Flight in Windows release verification script

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 7adbe93  [Release] Test Arrow Flight in Windows release verification script
7adbe93 is described below

commit 7adbe93014b7679fac1e1df1286767445fa27bce
Author: Wes McKinney <we...@users.noreply.github.com>
AuthorDate: Mon Jul 1 23:17:20 2019 -0500

    [Release] Test Arrow Flight in Windows release verification script
    
    This works for me with 0.14.0 rc0. On account of ARROW-5817 I had to check manually that the Python unit tests passed
---
 dev/release/verify-release-candidate.bat | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev/release/verify-release-candidate.bat b/dev/release/verify-release-candidate.bat
index 3f6d95c..299297e 100644
--- a/dev/release/verify-release-candidate.bat
+++ b/dev/release/verify-release-candidate.bat
@@ -75,6 +75,7 @@ cmake -G "%GENERATOR%" ^
       -DGTest_SOURCE=BUNDLED ^
       -DCMAKE_BUILD_TYPE=%CONFIGURATION% ^
       -DARROW_CXXFLAGS="/MP" ^
+      -DARROW_FLIGHT=ON ^
       -DARROW_PYTHON=ON ^
       -DARROW_PARQUET=ON ^
       ..  || exit /B
@@ -94,11 +95,11 @@ ctest -VV  || exit /B
 popd
 
 @rem Build and import pyarrow
-@rem parquet-cpp has some additional runtime dependencies that we need to figure out
-@rem see PARQUET-1018
 pushd %ARROW_SOURCE%\python
 
-python setup.py build_ext --inplace --with-parquet --bundle-arrow-cpp bdist_wheel  || exit /B
+set PYARROW_WITH_FLIGHT=1
+set PYARROW_WITH_PARQUET=1
+python setup.py build_ext --inplace --bundle-arrow-cpp bdist_wheel  || exit /B
 py.test pyarrow -v -s --parquet || exit /B
 
 popd