Skip to content

Commit 7adbe93

Browse files
authored
[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
1 parent 3cdd0cf commit 7adbe93

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dev/release/verify-release-candidate.bat

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ cmake -G "%GENERATOR%" ^
7575
-DGTest_SOURCE=BUNDLED ^
7676
-DCMAKE_BUILD_TYPE=%CONFIGURATION% ^
7777
-DARROW_CXXFLAGS="/MP" ^
78+
-DARROW_FLIGHT=ON ^
7879
-DARROW_PYTHON=ON ^
7980
-DARROW_PARQUET=ON ^
8081
.. || exit /B
@@ -94,11 +95,11 @@ ctest -VV || exit /B
9495
popd
9596

9697
@rem Build and import pyarrow
97-
@rem parquet-cpp has some additional runtime dependencies that we need to figure out
98-
@rem see PARQUET-1018
9998
pushd %ARROW_SOURCE%\python
10099

101-
python setup.py build_ext --inplace --with-parquet --bundle-arrow-cpp bdist_wheel || exit /B
100+
set PYARROW_WITH_FLIGHT=1
101+
set PYARROW_WITH_PARQUET=1
102+
python setup.py build_ext --inplace --bundle-arrow-cpp bdist_wheel || exit /B
102103
py.test pyarrow -v -s --parquet || exit /B
103104

104105
popd

0 commit comments

Comments
 (0)