Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion ci/msvc-build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,16 @@ conda create -n arrow -q -y python=%PYTHON% ^
six pytest setuptools numpy pandas cython ^
thrift-cpp

@rem ARROW-1294 CMake 3.9.0 in conda-forge breaks the build
set ARROW_CMAKE_VERSION=3.8.0

if "%JOB%" == "Toolchain" (

conda install -n arrow -q -y -c conda-forge ^
flatbuffers rapidjson cmake git boost-cpp ^
flatbuffers rapidjson ^
cmake=%ARROW_CMAKE_VERSION% ^
git ^
boost-cpp ^
snappy zlib brotli gflags lz4-c zstd
)

Expand Down