Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp patch Arrow to remove hash check #1217

Merged
merged 1 commit into from
Jan 30, 2023
Merged
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
5 changes: 4 additions & 1 deletion external/arrow/apache_arrow.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)

ExternalProject_Add(apache_arrow
GIT_REPOSITORY "https://github.com/apache/arrow"
GIT_TAG 89f9a0948961f6e94f1ef5e4f310b707d22a3c11
GIT_TAG f10f5cfd1376fb0e602334588b3f3624d41dee7d
PREFIX "${CMAKE_BINARY_DIR}/arrow/"
INSTALL_DIR "${CMAKE_BINARY_DIR}/arrow/install"
PATCH_COMMAND
sed "s| URL_HASH \"SHA256=.*\"||g" "./cpp/cmake_modules/ThirdpartyToolchain.cmake" > "./cpp/cmake_modules/ThirdpartyToolchain.cmake.new"
&& mv "./cpp/cmake_modules/ThirdpartyToolchain.cmake.new" "./cpp/cmake_modules/ThirdpartyToolchain.cmake"
CONFIGURE_COMMAND
${CMAKE_COMMAND} -G${CMAKE_GENERATOR} -DCMAKE_BUILD_TYPE=Release
-DBUILD_WARNING_LEVEL=PRODUCTION -DARROW_DEPENDENCY_SOURCE=BUNDLED
Expand Down