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 7e0d775 commit 01f01e2Copy full SHA for 01f01e2
.github/workflows/codebuild-ci.yml
@@ -79,3 +79,18 @@ jobs:
79
PY_VERSION
80
env:
81
PY_VERSION: ${{ matrix.python-version }}
82
+ integ-tests:
83
+ runs-on: ubuntu-latest
84
+ needs: [wait-for-approval]
85
+ steps:
86
+ - name: Configure AWS Credentials
87
+ uses: aws-actions/configure-aws-credentials@v4
88
+ with:
89
+ role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
90
+ aws-region: us-west-2
91
+ role-duration-seconds: 10800
92
+ - name: Run Integ Tests
93
+ uses: aws-actions/aws-codebuild-run-build@v1
94
95
+ project-name: sagemaker-python-sdk-ci-integ-tests
96
+ source-version-override: 'refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'
0 commit comments