-
Notifications
You must be signed in to change notification settings - Fork 6
37 lines (34 loc) · 1.12 KB
/
ci_v2_shadow.yml
File metadata and controls
37 lines (34 loc) · 1.12 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
name: CI v2 Shadow
concurrency:
group: ci-v2-shadow-${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
platform:
description: "Platform to run"
type: choice
required: true
default: active
options:
- active
- nvidia
- iluvatar
- metax
- moore
- cambricon
- ascend
- all
push:
branches: ["master"]
pull_request:
branches: ["master", "ci/ci-online"]
jobs:
ci-v2-shadow:
uses: InfiniTensor/ci/.github/workflows/infiniops-ci-v2-shadow.yml@c6bf369739f16e759f46fd466f586c51c59f26c3
with:
config_path: .github/ci_config.yml
ci_ref: c6bf369739f16e759f46fd466f586c51c59f26c3
max_parallel: 10
platform: ${{ github.event_name == 'workflow_dispatch' && (inputs.platform == 'all' && 'nvidia,iluvatar,metax,moore,cambricon,ascend' || inputs.platform == 'active' && 'nvidia,iluvatar,metax,moore,cambricon,ascend' || inputs.platform) || 'nvidia,iluvatar,metax,moore,cambricon,ascend' }}
secrets: inherit