Skip to content
Merged
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
4 changes: 2 additions & 2 deletions dev/builddeps-veloxbe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,11 @@ function setup_dependencies {
install_aws_deps
fi
if [ $ENABLE_GCS == "ON" ]; then
install_gcs-sdk-cpp
install_gcs_sdk_cpp
fi
if [ $ENABLE_ABFS == "ON" ]; then
export AZURE_SDK_DISABLE_AUTO_VCPKG=ON
install_azure-storage-sdk-cpp
install_azure_storage_sdk_cpp
fi
popd
}
Expand Down
4 changes: 2 additions & 2 deletions ep/build-velox/src/setup-rhel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,13 @@ function install_gcs {
# Dependencies of GCS, probably a workaround until the docker image is rebuilt
dnf -y install npm curl-devel
install_c-ares
install_gcs-sdk-cpp
install_gcs_sdk_cpp
}

function install_abfs {
# Dependencies of Azure Storage Blob cpp
dnf -y install perl-IPC-Cmd openssl libxml2-devel
install_azure-storage-sdk-cpp
install_azure_storage_sdk_cpp
}

function install_adapters {
Expand Down
Loading