Skip to content

Commit a703120

Browse files
authored
chore: fix old aws-sdk-cpp version references (#592)
1 parent 6122176 commit a703120

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v2
2727
with:
2828
repository: "aws/aws-sdk-cpp"
29-
ref: "1.7.231"
29+
ref: "1.8.32"
3030
path: "aws-sdk-cpp"
3131

3232
- name: Build and install aws-sdk-cpp

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Also, see the [API documentation](https://aws.github.io/aws-encryption-sdk-c/htm
1212
## Dependencies
1313

1414
The only direct dependencies of this code are OpenSSL 1.0.2 or higher or 1.1.0 or higher and
15-
[aws-c-common](https://github.com/awslabs/aws-c-common) v0.3.15. You will also need
15+
[aws-c-common](https://github.com/awslabs/aws-c-common) v0.4.42. You will also need
1616
a C compiler and CMake 3.9 or higher.
1717

1818
To integrate with [KMS](https://aws.amazon.com/kms/) the AWS Encryption SDK for C also requires
@@ -22,7 +22,7 @@ For best results when doing a build with KMS integration, do not install aws-c-c
2222
Build and install the AWS SDK for C++, which will build and install aws-c-common for you (see the C++ SDK dependancies
2323
[here](https://github.com/aws/aws-sdk-cpp/blob/master/third-party/CMakeLists.txt#L18)). If
2424
you install aws-c-common before building the AWS SDK for C++, this will fool the AWS SDK for
25-
C++ install logic, and you will be forced to install several other dependencies manually. Version 1.7.231 of the
25+
C++ install logic, and you will be forced to install several other dependencies manually. Version 1.8.32 of the
2626
AWS SDK for C++ is supported by version v1.0.1 of the AWS Encryption SDK for C.
2727

2828
You need to compile both the AWS Encryption SDK for C and its dependencies as either all
@@ -174,7 +174,7 @@ aws-c-common for you.
174174
Do a KMS-only build of the AWS SDK for C++. If you want to use the AWS SDK for C++ for
175175
other AWS services, you can omit the `-DBUILD_ONLY="kms"` argument, but the build will take much longer.
176176

177-
git clone -b v1.7.231 https://github.com/aws/aws-sdk-cpp.git
177+
git clone -b 1.8.32 https://github.com/aws/aws-sdk-cpp.git
178178
mkdir build-aws-sdk-cpp && cd build-aws-sdk-cpp
179179
cmake -G Xcode -DBUILD_SHARED_LIBS=ON -DBUILD_ONLY="kms" -DENABLE_UNITY_BUILD=ON ../aws-sdk-cpp
180180
xcodebuild -target install ; cd ..

codebuild/common-windows.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set ROOT_SRC_DIR=%cd%
1515
rmdir/s/q \build
1616
mkdir \build
1717
cd \build
18-
git clone -b 1.7.231 https://github.com/aws/aws-sdk-cpp.git || goto error
18+
git clone -b 1.8.32 https://github.com/aws/aws-sdk-cpp.git || goto error
1919
mkdir build-aws-sdk-cpp
2020
cd build-aws-sdk-cpp
2121
cmake %* -DCMAKE_INSTALL_PREFIX=c:/deps -DCMAKE_BUILD_TYPE="Release" -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DBUILD_ONLY="kms" -DENABLE_UNITY_BUILD=ON ../aws-sdk-cpp || goto error

examples/build_osx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set +ex
1818

1919
OS=$(uname -s)
20-
AWS_SDK_CPP_VER="1.7.231" #github versioned branch
20+
AWS_SDK_CPP_VER="1.8.32" #github versioned branch
2121
BUILDROOT="/var/tmp/build-$(date +%s)"
2222
OPENSSL_VER="[email protected]" #note this is a brew label, not an exact version reference
2323
BUILDROOT="/var/tmp/build-$(date +%Y%m%d)"

0 commit comments

Comments
 (0)