Skip to content

Commit

Permalink
[VL] update aws-sdk-cpp version to 1.11.169 (#4103)
Browse files Browse the repository at this point in the history
Current aws-sdk-cpp version(1.11.4) in static build has deadlock and [memory issues, so update to 1.11.169.
  • Loading branch information
yma11 authored Dec 20, 2023
1 parent 4f7b4e4 commit cd47a64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions dev/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"dependencies": [
{
"name": "aws-sdk-cpp",
"version>=": "1.11.169",
"features": [
"identity-management",
"s3",
Expand Down
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 @@ -107,7 +107,7 @@ function process_setup_ubuntu {
sed -i '/^ run_and_time install_fmt/a \ \ run_and_time install_protobuf' scripts/setup-ubuntu.sh
fi
if [ $ENABLE_S3 == "ON" ]; then
sed -i '/^function install_fmt.*/i function install_awssdk {\n github_checkout aws/aws-sdk-cpp 1.9.379 --depth 1 --recurse-submodules\n cmake_install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DMINIMIZE_SIZE:BOOL=ON -DENABLE_TESTING:BOOL=OFF -DBUILD_ONLY:STRING="s3;identity-management" \n} \n' scripts/setup-ubuntu.sh
sed -i '/^function install_fmt.*/i function install_awssdk {\n github_checkout aws/aws-sdk-cpp 1.11.169 --depth 1 --recurse-submodules\n cmake_install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DMINIMIZE_SIZE:BOOL=ON -DENABLE_TESTING:BOOL=OFF -DBUILD_ONLY:STRING="s3;identity-management" \n} \n' scripts/setup-ubuntu.sh
sed -i '/^ run_and_time install_fmt/a \ \ run_and_time install_awssdk' scripts/setup-ubuntu.sh
fi
if [ $ENABLE_GCS == "ON" ]; then
Expand Down Expand Up @@ -147,7 +147,7 @@ function process_setup_centos8 {
sed -i '/^cmake_install_deps fmt/a \\install_protobuf' scripts/setup-centos8.sh
fi
if [ $ENABLE_S3 == "ON" ]; then
sed -i '/^function cmake_install_deps.*/i function install_awssdk {\n github_checkout aws/aws-sdk-cpp 1.9.379 --depth 1 --recurse-submodules\n cmake_install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DMINIMIZE_SIZE:BOOL=ON -DENABLE_TESTING:BOOL=OFF -DBUILD_ONLY:STRING="s3;identity-management" \n} \n' scripts/setup-centos8.sh
sed -i '/^function cmake_install_deps.*/i function install_awssdk {\n github_checkout aws/aws-sdk-cpp 1.11.169 --depth 1 --recurse-submodules\n cmake_install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS:BOOL=OFF -DMINIMIZE_SIZE:BOOL=ON -DENABLE_TESTING:BOOL=OFF -DBUILD_ONLY:STRING="s3;identity-management" \n} \n' scripts/setup-centos8.sh
sed -i '/^cmake_install_deps fmt/a \ \ install_awssdk' scripts/setup-centos8.sh
fi
if [ $ENABLE_GCS == "ON" ]; then
Expand Down

0 comments on commit cd47a64

Please sign in to comment.