Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/ci_examples_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,16 @@ jobs:

- name: Test Examples
working-directory: ./Examples
shell: bash
run: |
# Run simple examples
gradle -p runtimes/java/DynamoDbEncryption test
gradle -p runtimes/java/DDBECwithSDKV2 test
# Run migration examples
gradle -p runtimes/java/Migration/PlaintextToAWSDBE test
gradle -p runtimes/java/Migration/DDBECv2ToAWSDBE test
# Same workflow for daily CI works for main and v3.x-Java branch so we check the branch name
if [[ "${{ inputs.branch }}" == "v3.x-Java" ]]; then
gradle -p runtimes/java/Migration/PlaintextToAWSDBE test
gradle -p runtimes/java/Migration/DDBECToAWSDBE test
else
gradle -p runtimes/java/DDBECwithSDKV2 test
gradle -p runtimes/java/Migration/PlaintextToAWSDBE test
gradle -p runtimes/java/Migration/DDBECv2ToAWSDBE test
fi
Loading