-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitlab-ci.yml
314 lines (290 loc) · 8.23 KB
/
.gitlab-ci.yml
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# Entry point for GitLab CI for the AppointDent Project
image: node:alpine
# Global variables used throughout the pipeline. This is especially
# helpful in the case of a mono-repository.
variables:
CLIENT_PATH: client
SERVER_PATH: server
APPOINTMENT_SERVICE_PATH: services/appointment-service
DENTIST_SERVICE_PATH: services/dentist-service
NOTIFICATION_SERVICE_PATH: services/notification-service
PATIENT_SERVICE_PATH: services/patient-service
SESSION_SERVICE_PATH: services/session-service
ADMIN_SERVICE_PATH: services/admin-service
# add any additional paths
# We permit three stages: (i) lint, (ii) build (transpile) (iii) test.
# To be able to test the source code, it first needs to be transpiled
# from TS to JS, hence the order of the stages.
stages:
- lint
- build
- test
# deploy?
before_script:
- apk update && apk add --no-cache bash
lint-client:
stage: lint
tags:
- docker
before_script:
- cd $CLIENT_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting client..."
- npm run lint
- echo "Lint successful!"
lint-server:
stage: lint
tags:
- docker
before_script:
- cd $SERVER_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting server..."
- npm run lint
- echo "Lint successful!"
lint-service1:
stage: lint
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
before_script:
- cd $APPOINTMENT_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting appointment-service..."
- npm run lint
- echo "Lint successful!"
lint-service2:
stage: lint
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
before_script:
- cd $DENTIST_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting dentist-service..."
- npm run lint
- echo "Lint successful!"
lint-service3:
stage: lint
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
before_script:
- cd $NOTIFICATION_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting notification-service..."
- npm run lint
- echo "Lint successful!"
lint-service4:
stage: lint
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
before_script:
- cd $PATIENT_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting patient-service..."
- npm run lint
- echo "Lint successful!"
lint-service5:
stage: lint
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
before_script:
- cd $SESSION_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting session-service..."
- npm run lint
- echo "Lint successful!"
lint-service6:
stage: lint
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
before_script:
- cd $ADMIN_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Linting admin-service..."
- npm run lint
- echo "Lint successful!"
# Note: the client does not have a test stage.
# Therefore, it's sufficient if it's only built
# on the main branch. Lint is still executed on
# all branches.
build-client:
stage: build
tags:
- docker
needs: ["lint-client"]
before_script:
- cd $CLIENT_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the client..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $CLIENT_PATH/dist
only:
- main # we don't want to excessively exhaust the servers
build-server:
stage: build
tags:
- docker
needs: ["lint-server"]
before_script:
- cd $SERVER_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the server..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $SERVER_PATH/dist
build-service1:
stage: build
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
needs: ["lint-service1"]
before_script:
- cd $APPOINTMENT_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the appointment-service..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $APPOINTMENT_SERVICE_PATH/dist
build-service2:
stage: build
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
needs: ["lint-service2"]
before_script:
- cd $DENTIST_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the dentist-service..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $DENTIST_SERVICE_PATH/dist
build-service3:
stage: build
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
needs: ["lint-service3"]
before_script:
- cd $NOTIFICATION_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the notification-service..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $NOTIFICATION_SERVICE_PATH/dist
build-service4:
stage: build
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
needs: ["lint-service4"]
before_script:
- cd $PATIENT_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the patient-service..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $PATIENT_SERVICE_PATH/dist
build-service5:
stage: build
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
needs: ["lint-service5"]
before_script:
- cd $SESSION_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the session-service..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $SESSION_SERVICE_PATH/dist
build-service6:
stage: build
# Image override: Python is required for the `better-sqlite3` dependency.
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
needs: ["lint-service6"]
before_script:
- cd $ADMIN_SERVICE_PATH
- npm ci --cache .npm --prefer-offline
script:
- echo "Building the admin-service..."
- npm run build
- echo "Build successful!"
artifacts:
paths:
- $ADMIN_SERVICE_PATH/dist
test-integration:
stage: test
image: "nikolaik/python-nodejs:python3.10-nodejs18"
tags:
- docker
# A set of integration tests requires all parts of the system
# to be built correctly (apart from the client, in our case).
needs: ["build-server",
"build-service1",
"build-service2",
"build-service3",
"build-service4",
"build-service5",
"build-service6"]
before_script:
# Include dependencies for all services
- npm ci --cache .npm --prefer-offline --prefix $SESSION_SERVICE_PATH
- npm ci --cache .npm --prefer-offline --prefix $APPOINTMENT_SERVICE_PATH
- npm ci --cache .npm --prefer-offline --prefix $DENTIST_SERVICE_PATH
- npm ci --cache .npm --prefer-offline --prefix $NOTIFICATION_SERVICE_PATH
- npm ci --cache .npm --prefer-offline --prefix $PATIENT_SERVICE_PATH
- npm ci --cache .npm --prefer-offline --prefix $ADMIN_SERVICE_PATH
- npm ci --cache .npm --prefer-offline --prefix $SERVER_PATH
- cd $SERVER_PATH
script:
- echo "Running integration tests via the server..."
- npm run test:integration # the same for local/ci
# TODO: discuss the feasibility of the deploy stage