-
Notifications
You must be signed in to change notification settings - Fork 110
80 lines (74 loc) · 2.47 KB
/
components-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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Components Integration Tests
on:
push:
branches:
- main
pull_request:
jobs:
components-launch:
strategy:
matrix:
include:
- scheduler: "aws_batch"
platform: "linux.20_04.4x"
- scheduler: "aws_batch"
container_repo: localhost
extra_args: "--mock"
platform: "linux.20_04.4x"
- scheduler: "kubernetes"
container_repo: localhost:5000/torchx
platform: "linux.20_04.16x"
- scheduler: "local_cwd"
platform: ubuntu-20.04
- scheduler: "local_docker"
platform: "linux.20_04.4x"
- scheduler: "ray"
platform: ubuntu-20.04
fail-fast: false
runs-on: ${{ matrix.platform }}
permissions:
id-token: write
contents: read
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
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
env:
AWS_ROLE_ARN: ${{ secrets.TF_AWS_ROLE_ARN }}
run: |
set -eux
if [ -n "$AWS_ROLE_ARN" ]; then
aws ecr get-login-password --region us-west-1 | docker login --username AWS --password-stdin 495572122715.dkr.ecr.us-west-1.amazonaws.com
fi
- name: Install dependencies
run: |
set -eux
pip install -r dev-requirements.txt
pip install -e .[kubernetes]
- name: Start Ray
if: ${{ matrix.scheduler == 'ray' }}
run: |
ray start --head
sleep 5 # wait till the node joins so that `status` command displays the head node info
ray status
- name: Start Kubernetes
if: ${{ matrix.scheduler == 'kubernetes' }}
run: |
scripts/setup_minikube.sh
- name: Run Components Integration Tests
env:
INTEGRATION_TEST_STORAGE: ${{ secrets.INTEGRATION_TEST_STORAGE }}
run: |
scripts/component_integration_tests.py --scheduler ${{ matrix.scheduler }} --container_repo "${{ matrix.container_repo || secrets.TF_CONTAINER_REPO }}" ${{ matrix.extra_args }}