-
Notifications
You must be signed in to change notification settings - Fork 15
135 lines (135 loc) · 3.51 KB
/
main.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
name: Main
on: [push, pull_request]
jobs:
build-gargantua:
uses: ./.github/workflows/build.yaml
with:
path: ./
image: gargantua
secrets: inherit
build-accesscode-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/accesscodesvc
image: accesscode-service
secrets: inherit
build-authn-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/authnsvc
image: authn-service
secrets: inherit
build-authr-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/authrsvc
image: authr-service
secrets: inherit
build-conversion-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/conversionsvc
image: conversion-service
secrets: inherit
build-cost-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/costsvc
image: cost-service
secrets: inherit
build-course-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/coursesvc
image: course-service
secrets: inherit
build-dbconfig-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/dbconfigsvc
image: dbconfig-service
secrets: inherit
build-environment-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/environmentsvc
image: environment-service
secrets: inherit
build-progress-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/progresssvc
image: progress-service
secrets: inherit
build-rbac-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/rbacsvc
image: rbac-service
secrets: inherit
build-scenario-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/scenariosvc
image: scenario-service
secrets: inherit
build-scheduledevent-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/scheduledeventsvc
image: scheduledevent-service
secrets: inherit
build-session-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/sessionsvc
image: session-service
secrets: inherit
build-setting-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/settingsvc
image: setting-service
secrets: inherit
build-terraform-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/terraformsvc
image: terraform-service
secrets: inherit
build-user-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/usersvc
image: user-service
secrets: inherit
build-vmclaim-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmclaimsvc
image: vmclaim-service
secrets: inherit
build-vmset-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmsetsvc
image: vmset-service
secrets: inherit
build-vm-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmsvc
image: vm-service
secrets: inherit
build-vmtemplate-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmtemplatesvc
image: vmtemplate-service
secrets: inherit
build-score-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/scoresvc
image: score-service
secrets: inherit