Skip to content

Commit f71f740

Browse files
committed
m
1 parent 00a9456 commit f71f740

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci_test_latest_released_mpl_java.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
schedule:
77
- cron: "00 16 * * 1-5"
88
workflow_dispatch: # allows triggering this manually through the Actions UI
9+
# TODO: Remove this before merging to main. We don't want this workflow running in CI
10+
# on PRs because we expect it to fail when the MPL is actually updated since the last version.
911
pull_request:
1012

1113
jobs:
@@ -21,7 +23,7 @@ jobs:
2123
strategy:
2224
max-parallel: 1
2325
matrix:
24-
java-version: [8, 11, 16, 17]
26+
java-version: [17]
2527
os: [macos-13]
2628
runs-on: ${{ matrix.os }}
2729
permissions:
@@ -79,7 +81,7 @@ jobs:
7981
gradle -p runtimes/java test
8082
8183
# The following three steps: "Transpile MPL Test Vectors without recursively building the MPL",
82-
# "Run Test Vectors", and "Test Examples" mimic the tests in ./codebuild/staging/release-staging.yml
84+
# "Run Test Vectors", and "Test Examples" mimic the tests in ./codebuild/staging/validate-staging.yml
8385
- name: Transpile MPL Test Vectors without recursively building the MPL
8486
working-directory: ./submodules/MaterialProviders/TestVectorsAwsCryptographicMaterialProviders
8587
run: |

TestVectors/runtimes/java/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dependencies {
9090
implementation("software.amazon.smithy.dafny:conversion:${smithyDafnyJavaConversionVersion}")
9191
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:${mplVersion}")
9292
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:${ddbecVersion}")
93-
implementation("software.amazon.cryptography:TestAwsCryptographicMaterialProviders:${mplVersion}")
93+
implementation("software.amazon.cryptography:TestAwsCryptographicMaterialProviders:1.8.0-SNAPSHOT")
9494

9595
implementation(platform("software.amazon.awssdk:bom:2.26.25"))
9696
implementation("software.amazon.awssdk:dynamodb")

0 commit comments

Comments
 (0)