We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f392a70 commit f7a5f94Copy full SHA for f7a5f94
1 file changed
.github/workflows/e2e-tests.yml
@@ -60,10 +60,12 @@ jobs:
60
role-to-assume: "${{ secrets.ACTIONS_INTEGRATION_ROLE_NAME }}"
61
role-session-name: java-language-sdk-test
62
aws-region: ${{ env.AWS_REGION }}
63
+ - name: sam build
64
+ run: export DOCKER_DEFAULT_PLATFORM=linux/amd64 && sam build
65
+ working-directory: ./examples
66
+ - name: sam deploy
67
+ run: sam deploy --resolve-image-repos
68
69
- name: Cloud Based Integration Tests
- run: |
- export DOCKER_DEFAULT_PLATFORM=linux/amd64
- sam build
- sam deploy --resolve-image-repos
- mvn clean test -B -q -Dtest.cloud.enabled=true -Dtest=CloudBasedIntegrationTest
70
+ run: mvn clean test -B -q -Dtest.cloud.enabled=true -Dtest=CloudBasedIntegrationTest
71
working-directory: ./examples
0 commit comments