From 69dfecc4978b4049fe29f26cb62a50d99af6b04b Mon Sep 17 00:00:00 2001 From: Wes McKinney Date: Sat, 29 Jul 2017 10:56:49 -0400 Subject: [PATCH] Pin cmake=3.8.0 in MSVC toolchainbuild Change-Id: I33b04899f79c8ba19eb5562c4b2a852caf510a16 --- ci/msvc-build.bat | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ci/msvc-build.bat b/ci/msvc-build.bat index 22108abdd3b..2a537769f82 100644 --- a/ci/msvc-build.bat +++ b/ci/msvc-build.bat @@ -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 )