Skip to content

Commit

Permalink
Build and install aws-sdk-cpp in wheel images
Browse files Browse the repository at this point in the history
Contributes to rapidsai/kvikio#426
  • Loading branch information
KyleFromNVIDIA committed Aug 15, 2024
1 parent 358b5d1 commit 11bd577
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ci-wheel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,25 @@ mv gh_*/bin/gh /usr/local/bin
rm -rf gh_*
EOF

# Download, build, and install aws-sdk-cpp
ARG AWS_SDK_CPP_VER=notset
RUN <<EOF
pushd tmp
git clone --recurse-submodules -b ${AWS_SDK_CPP_VER} https://github.com/aws/aws-sdk-cpp.git
cd aws-sdk-cpp
cmake \
-S . \
-B build \
--install-prefix /usr/local \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_ONLY=s3 \
-DBUILD_SHARED_LIBS=OFF \
-DENABLE_TESTING=OFF
cmake --build build/
cmake --install build/
popd
EOF

# Install sccache
ARG SCCACHE_VER=notset

Expand Down
2 changes: 2 additions & 0 deletions versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ CODECOV_VER: 0.7.3
YQ_VER: 4.44.2
# renovate: datasource=docker depName=amazon/aws-cli versioning=docker
AWS_CLI_VER: 2.17.20
# renovate: datasource=github-releases depName=aws/aws-sdk-cpp
AWS_SDK_CPP_VER: 1.11.384

0 comments on commit 11bd577

Please sign in to comment.