-
Notifications
You must be signed in to change notification settings - Fork 79
64 lines (62 loc) · 1.72 KB
/
pipeline-select.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
name: "(Single) Choose your pipeline"
on:
workflow_dispatch:
inputs:
build-type:
required: false
type: choice
options:
- Release
- Debug
- RelWithDebInfo
- CI
default: "Release"
build-with-tracy:
required: false
type: boolean
default: false
single-card-demo:
required: false
type: boolean
default: false
single-card-perf-models:
required: false
type: boolean
default: false
single-card-perf-device-models:
description: "perf-device (requires tracy build)"
required: false
type: boolean
default: false
single-card-nightly:
required: false
type: boolean
default: false
run-name: ${{ inputs.description }}
jobs:
build-artifact:
uses: ./.github/workflows/build-artifact.yaml
with:
build-type: ${{ inputs.build-type }}
tracy: ${{ inputs.build-with-tracy }}
secrets: inherit
single-card-demo-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/single-card-demo-tests-impl.yaml
if: ${{ inputs.single-card-demo }}
single-card-perf-models-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/perf-models-impl.yaml
if: ${{ inputs.perf-models }}
single-card-perf-device-models-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/perf-device-models-impl.yaml
if: ${{ inputs.perf-device-models }}
single-card-nightly:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml
if: ${{ inputs.single-card-nightly }}