Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RitvikKapila committed Jun 28, 2024
1 parent ec7d644 commit 955c409
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AwsEncryptionSDK/codebuild/release/test-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ phases:
# Run Decrypt Test Vectors on .NET Framework net48
- cd ./AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectors
- export DAFNY_AWS_ESDK_TEST_VECTOR_MANIFEST_PATH="$PYTHON_23_VECTOR_PATH/manifest.json" \
- ls $PYTHON_23_VECTOR_PATH
- dotnet test --framework net48

# Run Decrypt Test Vectors on .NET net6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static class MaterialProviderFactory
// TODO: Get this from CLI or something?
private static readonly KeyVectorsConfig keyVectorsConfig = new KeyVectorsConfig
{
KeyManifestPath = Directory.GetCurrentDirectory() + "/../bin/Debug/TestVectors/resources/keys.json"
KeyManifestPath = Environment.GetEnvironmentVariable(PYTHON_23_VECTOR_PATH) + "keys.json"

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-test-vectors / generate_vectors (ubuntu-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-test-vectors / decrypt_python_vectors (ubuntu-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (ubuntu-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (ubuntu-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (ubuntu-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (ubuntu-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (macos-12)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (macos-12)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (macos-12)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (windows-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (windows-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context

Check failure on line 28 in AwsEncryptionSDK/runtimes/net/TestVectorsNative/TestVectorLib/MaterialProviderFactory.cs

View workflow job for this annotation

GitHub Actions / pr-ci-net / testDotNet (windows-latest)

The name 'PYTHON_23_VECTOR_PATH' does not exist in the current context
};
private static KeyVectors keyVectors = new(keyVectorsConfig);

Expand Down

0 comments on commit 955c409

Please sign in to comment.