File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : push
4+
5+ jobs :
6+ build-and-test-examples :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ with :
11+ submodules : recursive
12+
13+ - uses : actions/setup-java@v4
14+ with :
15+ distribution : corretto
16+ java-version : 8
17+
18+ - name : Build and publish to mavenLocal
19+ run : ./gradlew publishToMavenLocal
20+
21+ - name : Build Examples/DynamoDbEncryption
22+ working-directory : Examples/DynamoDbEncryption
23+ run : ./gradlew build
24+
25+ - name : Build Examples/DDBECwithSDKV2
26+ working-directory : Examples/DDBECwithSDKV2
27+ run : ./gradlew build
28+
29+ - name : Build Examples/Migration/PlaintextToAWSDBE
30+ working-directory : Examples/Migration/PlaintextToAWSDBE
31+ run : ./gradlew build
32+
33+ - name : Build Examples/Migration/DDBECv2ToAWSDBE
34+ working-directory : Examples/Migration/DDBECv2ToAWSDBE
35+ run : ./gradlew build
You can’t perform that action at this time.
0 commit comments