-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (41 loc) · 1.37 KB
/
integration-test.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
name: Run Integration Tests
on:
push:
paths-ignore:
- 'README.md'
- '.github/workflows/unit-test.yaml'
- '.github/workflows/quality.yaml'
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
pytorch-integration-local-gpu:
name: Local Integration Tests - GPU
uses: ./.github/workflows/integration-test-action.yaml
with:
test_path: "tests/integ/test_pytorch_local_gpu.py"
build_img_cmd: "make inference-pytorch-gpu"
test_parallelism: "1"
pytorch-integration-remote-gpu:
name: Remote Integration Tests - GPU
uses: ./.github/workflows/integration-test-action.yaml
with:
test_path: "tests/integ/test_pytorch_remote_gpu.py"
build_img_cmd: "make inference-pytorch-gpu"
pytorch-integration-remote-cpu:
name: Remote Integration Tests - CPU
uses: ./.github/workflows/integration-test-action.yaml
with:
test_path: "tests/integ/test_pytorch_remote_cpu.py"
build_img_cmd: "make inference-pytorch-cpu"
pytorch-integration-local-cpu:
name: Local Integration Tests - CPU
uses: ./.github/workflows/integration-test-action.yaml
with:
test_path: "tests/integ/test_pytorch_local_cpu.py"
build_img_cmd: "make inference-pytorch-cpu"
test_parallelism: "1"