-
Notifications
You must be signed in to change notification settings - Fork 72
81 lines (79 loc) · 2.02 KB
/
pipeline-select-galaxy.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
81
name: "(TG/TGG) 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
tgg-unit:
required: false
type: boolean
default: false
tgg-frequent:
required: false
type: boolean
default: false
tgg-model-perf:
required: false
type: boolean
default: false
tg-unit:
required: false
type: boolean
default: false
tg-frequent:
required: false
type: boolean
default: false
tg-model-perf:
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
tgg-unit-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tgg-unit-tests-impl.yaml
if: ${{ inputs.tgg-unit }}
tgg-frequent-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tgg-frequent-tests-impl.yaml
if: ${{ inputs.tgg-frequent }}
tgg-model-perf-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tgg-model-perf-tests-impl.yaml
if: ${{ inputs.tgg-model-perf }}
tg-unit-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tg-unit-tests-impl.yaml
if: ${{ inputs.tg-unit }}
tg-frequent-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tg-frequent-tests-impl.yaml
if: ${{ inputs.tg-frequent }}
tg-model-perf-tests:
needs: build-artifact
secrets: inherit
uses: ./.github/workflows/tg-model-perf-tests-impl.yaml
if: ${{ inputs.tg-model-perf }}