This is an automated email from the ASF dual-hosted git repository.
yuanzhou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 3f0a7af0cd [GLUTEN-6887][VL] Daily Update Velox Version (2024_12_09)
(#8178)
3f0a7af0cd is described below
commit 3f0a7af0cdbdf046a4d0d3d31116377249969c79
Author: Gluten Performance Bot
<[email protected]>
AuthorDate: Tue Dec 10 11:47:28 2024 +0800
[GLUTEN-6887][VL] Daily Update Velox Version (2024_12_09) (#8178)
Upstream Velox's New Commits:
929affe38 by Xiaoxuan Meng, fix: Fix flaky
caleWriterLocalPartitionTest.unpartitionBasic (11788)
164b4c2be by Jacob Wujciak-Jens, build: Add option to build monolithic,
shared library (10732)
---
cpp/velox/CMakeLists.txt | 3 ---
ep/build-velox/src/build_velox.sh | 3 ++-
ep/build-velox/src/get_velox.sh | 2 +-
3 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/cpp/velox/CMakeLists.txt b/cpp/velox/CMakeLists.txt
index 4dc5ec0aff..9fb8b6c6a6 100644
--- a/cpp/velox/CMakeLists.txt
+++ b/cpp/velox/CMakeLists.txt
@@ -251,15 +251,12 @@ if(BUILD_TESTS)
import_library(
facebook::velox::exec_test_lib
${VELOX_COMPONENTS_PATH}/exec/tests/utils/libvelox_exec_test_lib.a)
- import_library(facebook::velox::cursor
- ${VELOX_COMPONENTS_PATH}/exec/tests/utils/libvelox_cursor.a)
target_link_libraries(
facebook::velox::exec_test_lib
INTERFACE facebook::velox::vector_test_lib
facebook::velox::dwio_common_test
facebook::velox::file_test_utils facebook::velox::temp_path)
target_link_libraries(velox PUBLIC facebook::velox::exec_test_lib)
- target_link_libraries(velox PUBLIC facebook::velox::cursor)
endif()
target_link_libraries(velox PUBLIC facebook::velox)
diff --git a/ep/build-velox/src/build_velox.sh
b/ep/build-velox/src/build_velox.sh
index 18599c0f8f..a5f009833a 100755
--- a/ep/build-velox/src/build_velox.sh
+++ b/ep/build-velox/src/build_velox.sh
@@ -158,7 +158,8 @@ function compile {
if [ -d gtest-build ]; then
echo "INSTALL gtest."
if [ $OS == 'Linux' ]; then
- sudo cmake --install gtest-build/
+ cd gtest-src; cmake . ; sudo make install -j
+ #sudo cmake --install gtest-build/
elif [ $OS == 'Darwin' ]; then
sudo cmake --install gtest-build/
fi
diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh
index a24ad23973..7e00939e9b 100755
--- a/ep/build-velox/src/get_velox.sh
+++ b/ep/build-velox/src/get_velox.sh
@@ -17,7 +17,7 @@
set -exu
VELOX_REPO=https://github.com/oap-project/velox.git
-VELOX_BRANCH=2024_12_08
+VELOX_BRANCH=2024_12_09
VELOX_HOME=""
OS=`uname -s`
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]