Skip to content

Commit 666f79d

Browse files
m
1 parent b6aad0b commit 666f79d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

codebuild/py312/decrypt_hkeyring_with_net.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ phases:
4242

4343
# Change TestVectors to reference the published .NET ESDK
4444
- cd ../../AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib
45-
- sed -i 's|<ProjectReference Include="\.\./\.\./ESDK\.csproj" />|<PackageReference Include="AWS.Cryptography.EncryptionSDK" />|g' AWSEncryptionSDKTestVectorLib.csproj
45+
# CodeBuild seems to want to use ESDK-NET 4.0.0, which is not a good version...
46+
# Pin to at least 4.1.0; this is the most recent version at time of writing.
47+
# Hopefully CodeBuild will find more recent versions in the future, but this cannot be guaranteed I guess...
48+
- sed -i 's|<ProjectReference Include="\.\./\.\./ESDK\.csproj" />|<PackageReference Include="AWS.Cryptography.EncryptionSDK" Version="[4.1.0,)" />|g' AWSEncryptionSDKTestVectorLib.csproj
4649
- cd ../TestVectors
4750

4851
build:

0 commit comments

Comments
 (0)