-
Notifications
You must be signed in to change notification settings - Fork 110
45 lines (42 loc) · 1.19 KB
/
aws-batch-integration-tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: AWS Batch Integration Tests
on:
push:
branches:
- main
pull_request:
jobs:
awsbatch:
runs-on: "linux.20_04.4x"
permissions:
id-token: write
contents: read
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
architecture: x64
- name: Checkout TorchX
uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
aws-region: us-west-1
role-to-assume: ${{ secrets.TF_AWS_ROLE_ARN }}
role-session-name: github-torchx
continue-on-error: true
- name: Configure Docker
run: |
set -eux
aws ecr get-login-password --region us-west-1 | docker login --username AWS --password-stdin 495572122715.dkr.ecr.us-west-1.amazonaws.com
continue-on-error: true
- name: Install dependencies
run: |
set -eux
pip install -e .[dev]
- name: Run AWS Batch Integration Tests
env:
AWS_ROLE_ARN: ${{ secrets.TF_AWS_ROLE_ARN }}
run: |
set -ex
scripts/awsbatchint.sh