Revert "[feature-wip](Cloud) Introduce azure core C++ sdk (#35208)" (#35826)

## Proposed changes

Issue Number: close #xxx

<!--Describe your changes.-->

This reverts commit #35641 because of the compilation of such is not
successful on arm plateform.
This commit is contained in:
AlexYue
2024-06-03 23:22:56 +08:00
committed by GitHub
parent 940e26f341
commit ba0161c8b9
3 changed files with 0 additions and 31 deletions

View File

@ -2,10 +2,6 @@
This file contains version of the third-party dependency libraries in the build-env image. The docker build-env image is apache/doris, and the tag is `build-env-${version}`
## 20240529
- Added: azure-core 1.10.3
## 20240325
- Modified: arrow 13.0.0 -> 15.0.2

View File

@ -1778,25 +1778,6 @@ build_base64() {
"${BUILD_SYSTEM}" install
}
# azure blob storage
build_azure() {
check_if_source_exist "${AZURE_SOURCE}"
cd "${TP_SOURCE_DIR}/${AZURE_SOURCE}"
azure_dir=$(pwd)
rm -rf "${BUILD_DIR}"
mkdir -p "${BUILD_DIR}"
cd "${BUILD_DIR}"
# We need use openssl 1.1.1n, which is already carried in vcpkg-custom-ports
AZURE_PORTS="vcpkg-custom-ports"
AZURE_MANIFEST_DIR="."
"${CMAKE_CMD}" -G "${GENERATOR}" -DVCPKG_MANIFEST_MODE=ON -DVCPKG_OVERLAY_PORTS="${azure_dir}/${AZURE_PORTS}" -DVCPKG_MANIFEST_DIR="${azure_dir}/${AZURE_MANIFEST_DIR}" -DWARNINGS_AS_ERRORS=FALSE -DCMAKE_INSTALL_PREFIX="${TP_INSTALL_DIR}" -DCMAKE_BUILD_TYPE=Release ..
"${BUILD_SYSTEM}" -j "${PARALLEL}"
"${BUILD_SYSTEM}" install
}
if [[ "${#packages[@]}" -eq 0 ]]; then
packages=(
libunixodbc
@ -1863,7 +1844,6 @@ if [[ "${#packages[@]}" -eq 0 ]]; then
streamvbyte
ali_sdk
base64
azure
)
if [[ "$(uname -s)" == 'Darwin' ]]; then
read -r -a packages <<<"binutils gettext ${packages[*]}"

7
thirdparty/vars.sh vendored
View File

@ -508,12 +508,6 @@ BASE64_NAME="v0.5.2.tar.gz"
BASE64_SOURCE="base64-0.5.2"
BASE64_MD5SUM="49e5a6c98bd0192aedd16c16eec39974"
# azure blob
AZURE_DOWNLOAD="https://github.com/Azure/azure-sdk-for-cpp/archive/azure-core_1.10.3.tar.gz"
AZURE_NAME="azure-core_1.10.3.tar.gz"
AZURE_SOURCE="azure-sdk-for-cpp-azure-core_1.10.3"
AZURE_MD5SUM="aa470cfdba93dd69a6f3112a6958c13c"
# all thirdparties which need to be downloaded is set in array TP_ARCHIVES
export TP_ARCHIVES=(
'LIBEVENT'
@ -589,7 +583,6 @@ export TP_ARCHIVES=(
'LIBUUID'
'ALI_SDK'
'BASE64'
'AZURE'
)
if [[ "$(uname -s)" == 'Darwin' ]]; then