Skip to content

Commit d395adc

Browse files
authored
Create GitHub action to trigger canaries (#5008)
1 parent 7dcb4f8 commit d395adc

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Canaries
2+
on:
3+
schedule:
4+
- cron: "0 */3 * * *"
5+
workflow_dispatch:
6+
7+
permissions:
8+
id-token: write # This is required for requesting the JWT
9+
10+
jobs:
11+
tests:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Configure AWS Credentials
15+
uses: aws-actions/configure-aws-credentials@v4
16+
with:
17+
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
18+
aws-region: us-west-2
19+
role-duration-seconds: 10800
20+
- name: Run Integ Tests
21+
uses: aws-actions/aws-codebuild-run-build@v1
22+
id: codebuild
23+
with:
24+
project-name: sagemaker-python-sdk-canaries

0 commit comments

Comments
 (0)