-
Notifications
You must be signed in to change notification settings - Fork 55
57 lines (46 loc) · 1.44 KB
/
coordinator.yml
File metadata and controls
57 lines (46 loc) · 1.44 KB
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
name: Test Coordinator
on:
push:
branches:
- main
- triton_v3.2.x
- triton_v3.3.x
pull_request:
branches:
- main
- triton_v3.2.x
- triton_v3.3.x
jobs:
ubuntu-native-aipu:
if: github.ref_name == 'triton_v3.3.x'
uses: ./.github/workflows/aipu-build-and-test.yml
ubuntu-native-ascend:
if: github.ref_name == 'triton_v3.2.x'
uses: ./.github/workflows/ascend-build-and-test.yml
ubuntu-native-cambricon:
if: github.ref_name == 'main'
uses: ./.github/workflows/cambricon-build-and-test.yml
ubuntu-native-hcu:
if: github.ref_name == 'main'
uses: ./.github/workflows/hcu-build-and-test.yml
ubuntu-native-iluvatar:
if: github.ref_name == 'main'
uses: ./.github/workflows/iluvatar-build-and-test.yml
ubuntu-native-metax:
if: github.ref_name == 'main'
uses: ./.github/workflows/metax-build-and-test.yml
ubuntu-native-mthreads:
if: github.ref_name == 'main'
uses: ./.github/workflows/mthreads-build-and-test.yml
ubuntu-native-nv:
if: |
github.ref_name == 'main' ||
github.ref_name == 'triton_v3.2.x' ||
github.ref_name == 'triton_v3.3.x'
uses: ./.github/workflows/nv-build-and-test.yml
ubuntu-native-tsingmicro:
if: github.ref_name == 'triton_v3.3.x'
uses: ./.github/workflows/tsingmicro-build-and-test.yml
ubuntu-native-xpu:
if: github.ref_name == 'main'
uses: ./.github/workflows/xpu-build-and-test.yml