-
Notifications
You must be signed in to change notification settings - Fork 58
170 lines (152 loc) · 4.9 KB
/
clients-java.parent.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: "clients/java all (parent)"
on:
# Triggered manually.
workflow_dispatch:
inputs:
jobServerVersion:
description: "jobServerVersion: Server version from which to generate client code"
required: false
type: "string"
default: "dev"
runnerGroup:
description: "runnerGroup: Set of runners where the workflow jobs should be run"
required: false
type: "string"
default: "Linux"
jobs:
qa-pom:
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "clients/java/qa-pom/"
copyArtifacts: false
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
module-creator:
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "server/module-creator/"
copyArtifacts: false
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
maven-plugin:
needs: ["module-creator"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "clients/java/maven-plugin/"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
module-core:
needs: ["maven-plugin"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "server/module-core/"
genModuleEnable: true
genModuleServerVersion: "${{ inputs.jobServerVersion }}"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
module-elements:
needs: ["module-core"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "server/module-elements/"
genModuleEnable: true
genModuleServerVersion: "${{ inputs.jobServerVersion }}"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
module-filters:
needs: ["module-elements"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "server/module-filters/"
genModuleEnable: true
genModuleServerVersion: "${{ inputs.jobServerVersion }}"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
client:
needs: ["qa-pom", "module-filters"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "clients/java/"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
module-chroma:
needs: ["client"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "server/module-examples/chroma/"
genModuleEnable: true
genModuleServerVersion: "${{ inputs.jobServerVersion }}"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
# Unavailable since Kurento 7.0.0
#module-crowddetector:
# needs: ["client"]
# uses: "./.github/workflows/clients-java.child.yaml"
# with:
# directory: "server/module-examples/crowddetector/"
# genModuleEnable: true
# genModuleServerVersion: "${{ inputs.jobServerVersion }}"
# secrets: inherit
module-datachannelexample:
needs: ["client"]
uses: "./.github/workflows/clients-java.child.yaml"
with:
directory: "server/module-examples/datachannelexample/"
genModuleEnable: true
genModuleServerVersion: "${{ inputs.jobServerVersion }}"
runnerGroup: ${{ inputs.runnerGroup }}
secrets: inherit
# Unavailable since Kurento 7.0.0
#module-markerdetector:
# needs: ["client"]
# uses: "./.github/workflows/clients-java.child.yaml"
# with:
# directory: "server/module-examples/markerdetector/"
# genModuleEnable: true
# genModuleServerVersion: "${{ inputs.jobServerVersion }}"
# secrets: inherit
# Unavailable since Kurento 7.0.0
#module-platedetector:
# needs: ["client"]
# uses: "./.github/workflows/clients-java.child.yaml"
# with:
# directory: "server/module-examples/platedetector/"
# genModuleEnable: true
# genModuleServerVersion: "${{ inputs.jobServerVersion }}"
# secrets: inherit
# Unavailable since Kurento 7.0.0
#module-pointerdetector:
# needs: ["client"]
# uses: "./.github/workflows/clients-java.child.yaml"
# with:
# directory: "server/module-examples/pointerdetector/"
# genModuleEnable: true
# genModuleServerVersion: "${{ inputs.jobServerVersion }}"
# secrets: inherit
#kurento-utils-js:
# Not published for Kurento 7.
# The Kurento Test Framework is unsupported and unmaintained.
#test-integration:
# needs:
# [
# "kurento-utils-js",
# "client",
# "module-chroma",
# "module-crowddetector",
# "module-platedetector",
# ]
# Not published for Kurento 7.
# Doesn't make much sense having them as standalone installable from Maven,
# they are supposed to be a learning resource, not a ready-to-use application.
#tutorials-java:
# needs:
# [
# "client",
# "module-chroma",
# "module-crowddetector",
# "module-datachannelexample",
# "module-platedetector",
# "module-pointerdetector",
# ]
#tutorials-test:
# needs: ["tutorials-java"]