Skip to content
Draft
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion dev/builddeps-veloxbe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -289,14 +289,17 @@ function get_velox {
}

function setup_dependencies {
DEPENDENCY_DIR=${DEPENDENCY_DIR:-$CURRENT_DIR/../ep/_ep}
export DEPENDENCY_DIR=${DEPENDENCY_DIR:-$CURRENT_DIR/../ep/_ep}
mkdir -p ${DEPENDENCY_DIR}

source $GLUTEN_DIR/dev/build-helper-functions.sh
source ${VELOX_HOME}/scripts/setup-common.sh

echo "Start to install dependencies"
pushd $VELOX_HOME

# set GIT_CEILING_DIRECTORIES to make `git apply` work as expected.
export GIT_CEILING_DIRECTORIES=${DEPENDENCY_DIR}
if [ $OS == 'Linux' ]; then
setup_linux
elif [ $OS == 'Darwin' ]; then
Expand All @@ -315,6 +318,8 @@ function setup_dependencies {
export AZURE_SDK_DISABLE_AUTO_VCPKG=ON
install_azure_storage_sdk_cpp
fi
unset GIT_CEILING_DIRECTORIES

popd
}

Expand Down
2 changes: 1 addition & 1 deletion dev/ci-velox-buildshared-centos-9.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ if [ "$(uname -m)" = "aarch64" ]; then
export VCPKG_FORCE_SYSTEM_BINARIES=1;
fi

./dev/builddeps-veloxbe.sh --run_setup_script=OFF --build_arrow=OFF --build_tests=ON \
./dev/builddeps-veloxbe.sh --run_setup_script=ON --build_arrow=OFF --build_tests=ON \
--build_examples=ON --build_benchmarks=ON
4 changes: 2 additions & 2 deletions ep/build-velox/src/get-velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ set -exu

CURRENT_DIR=$(cd "$(dirname "$BASH_SOURCE")"; pwd)
VELOX_REPO=https://github.com/IBM/velox.git
VELOX_BRANCH=dft-2026_06_06
VELOX_ENHANCED_BRANCH=ibm-2026_06_06
VELOX_BRANCH=dft-2026_06_12
VELOX_ENHANCED_BRANCH=ibm-2026_06_12
VELOX_HOME=""
RUN_SETUP_SCRIPT=ON
ENABLE_ENHANCED_FEATURES=OFF
Expand Down
Loading