-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
489 lines (460 loc) · 14.2 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
services:
- name: bitnami/mongodb:latest
alias: mongo
- name: docker:dind
alias: docker
- name: emqx/emqx:latest
alias: events
variables:
MONGODB_USERNAME: "admin"
MONGODB_PASSWORD: "admin"
MONGODB_DATABASE: "test_authorization-server"
MONGODB_ROOT_PASSWORD: "admin"
EMQX_ALLOW_ANONYMOUS: "true"
stages:
- tests
- pack
- docs
test_authorization_server:
image: registry.gitlab.com/castlecraft/docker-craft/node-latest-gettext-base:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths:
- apps/authorization-server/node_modules/
only:
refs:
- merge_requests
changes:
- apps/authorization-server/**/*
variables:
NODE_ENV: "development"
SESSION_SECRET: "secret"
COOKIE_MAX_AGE: "43200"
TOKEN_VALIDITY: "3600"
SESSION_NAME: "E2E_SESSION"
DB_HOST: "mongo"
DB_USER: "admin"
DB_PASSWORD: "admin"
DB_NAME: "authorization-server"
EVENTS_PROTO: "mqtt"
EVENTS_HOST: "events"
EVENTS_PORT: "1883"
EVENTS_USER: "user"
EVENTS_PASSWORD: "changeit"
before_script:
- cd apps/authorization-server
- yarn
script:
# Check Code Quality
- yarn lint
- yarn format:check
# Test backend unit tests
- yarn test:server
# Create .env file
- envsubst '${NODE_ENV}
${SESSION_SECRET}
${COOKIE_MAX_AGE}
${SESSION_NAME}
${TOKEN_VALIDITY}
${DB_HOST}
${DB_NAME}
${DB_USER}
${DB_PASSWORD}' < docker/env.tmpl > .env
- envsubst '${EVENTS_PROTO}
${EVENTS_HOST}
${EVENTS_PORT}
${EVENTS_USER}
${EVENTS_PASSWORD}' < docker/env-events.tmpl >> .env
# set env variable for test
- export NODE_ENV=test
# Test backend e2e
- yarn test:e2e
tags:
- docker
test_authorization_client:
image: registry.gitlab.com/castlecraft/docker-craft/node-latest-headless-chrome:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
only:
refs:
- merge_requests
changes:
- frontends/authorization-client/**/*
before_script:
- cd frontends/authorization-client
- yarn
script:
# Check Code Quality
- yarn lint
- yarn format:check
# Test frontend
- NODE_ENV=test yarn test
- NODE_ENV=test yarn e2e
tags:
- docker
test_communication_server:
image: node:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths:
- apps/communication-server/node_modules/
only:
refs:
- merge_requests
changes:
- apps/communication-server/**/*
before_script:
- cd apps/communication-server
- yarn
script:
# set env variable for test
- export NODE_ENV=test
# Check Code Quality
- yarn lint
- yarn format:check
# Test backend unit tests
- yarn test:server
# Test backend e2e
- yarn test:e2e
tags:
- docker
test_identity_provider:
image: node:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths:
- apps/identity-provider/node_modules/
only:
refs:
- merge_requests
changes:
- apps/identity-provider/**/*
before_script:
- cd apps/identity-provider
- yarn
script:
# set env variable for test
- export NODE_ENV=test
# Check Code Quality
- yarn lint
- yarn format:check
# Test backend unit tests
- yarn test:server
# Test backend e2e
- yarn test:e2e
tags:
- docker
test_identity_client:
image: registry.gitlab.com/castlecraft/docker-craft/node-latest-headless-chrome:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
only:
refs:
- merge_requests
changes:
- frontends/identity-client/**/*
before_script:
- cd frontends/identity-client
- yarn
script:
# Check Code Quality
- yarn lint
- yarn format:check
# Test frontend
- NODE_ENV=test yarn test
- NODE_ENV=test yarn e2e
tags:
- docker
test_infrastructure_console:
image: node:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths:
- apps/infrastructure-console/node_modules/
only:
refs:
- merge_requests
changes:
- apps/infrastructure-console/**/*
before_script:
- cd apps/infrastructure-console
- yarn
script:
# set env variable for test
- export NODE_ENV=test
# Check Code Quality
- yarn lint
- yarn format:check
# Test backend unit tests
- yarn test:server
# Test backend e2e
- yarn test:e2e
tags:
- docker
test_admin_client:
image: registry.gitlab.com/castlecraft/docker-craft/node-latest-headless-chrome:latest
stage: tests
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
only:
refs:
- merge_requests
changes:
- frontends/admin-client/**/*
before_script:
- cd frontends/admin-client
- yarn
script:
# Check Code Quality
- yarn lint
- yarn format:check
# Test frontend
- NODE_ENV=test yarn test
- NODE_ENV=test yarn e2e
tags:
- docker
pack_latest_authorization_server:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Authorization Server
- docker build -t authorization-server apps/authorization-server
- docker tag authorization-server $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-server:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-server:latest
pack_latest_authorization_client:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Authorization Client
- docker build -t authorization-client frontends/authorization-client
- docker tag authorization-client $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-client:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-client:latest
pack_latest_communication_server:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Communication Server
- docker build -t communication-server apps/communication-server
- docker tag communication-server $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/communication-server:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/communication-server:latest
pack_latest_identity_provider:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Identity Provider
- docker build -t identity-provider apps/identity-provider
- docker tag identity-provider $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-provider:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-provider:latest
pack_latest_identity_client:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Identity Client
- docker build --build-arg BUILD_ARGS="--configuration=production" -t identity-client frontends/identity-client
- docker tag identity-client $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-client:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-client:latest
pack_latest_infrastructure_console:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Infrastructure Console
- docker build -t infrastructure-console apps/infrastructure-console
- docker tag infrastructure-console $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/infrastructure-console:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/infrastructure-console:latest
pack_latest_admin_client:
image: docker
stage: pack
only:
refs:
- main
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# Admin Client
- docker build --build-arg BUILD_ARGS="--configuration=production" -t admin-client frontends/admin-client
- docker tag admin-client $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/admin-client:latest
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/admin-client:latest
pack_tag_authorization_server:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Authorization Server
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t authorization-server apps/authorization-server
- docker tag authorization-server $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-server:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-server:$VERSION
pack_tag_authorization_client:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Authorization Client
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t authorization-client frontends/authorization-client
- docker tag authorization-client $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-client:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/authorization-client:$VERSION
pack_tag_communication_server:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Communication Server
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t communication-server apps/communication-server
- docker tag communication-server $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/communication-server:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/communication-server:$VERSION
pack_tag_identity_provider:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Idenitiy Provider
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t identity-provider apps/identity-provider
- docker tag identity-provider $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-provider:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-provider:$VERSION
pack_tag_identity_client:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Identity Client
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t identity-client frontends/identity-client
- docker tag identity-client $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-client:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/identity-client:$VERSION
pack_tag_infrastructure_console:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Infrastructure Console
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t infrastructure-console apps/infrastructure-console
- docker tag infrastructure-console $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/infrastructure-console:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/infrastructure-console:$VERSION
pack_tag_admin_client:
image: docker
stage: pack
only:
refs:
- tags
before_script:
- apk add git
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
script:
# get latest tag for app in master branch
# Admin Client
- export VERSION=$(git tag --list --sort=-version:refname | sed -n 1p | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
- docker build -t admin-client frontends/admin-client
- docker tag admin-client $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/admin-client:$VERSION
- docker push $CI_REGISTRY/$CI_PROJECT_NAMESPACE/building-blocks/admin-client:$VERSION
pages:
image: node:latest
stage: docs
only:
- main
before_script:
# Install zip
# Install Helm
- curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
# Install nodejs global packages
- npm i -g lerna docpress
# Install nodejs dependencies
- yarn
- lerna clean -y
- lerna bootstrap
script:
# Build docpress to public path
- docpress b
# Build TypeScript API docs
- yarn docs
# Download and extract existing artifacts for helm charts
- |
curl --location \
--header "JOB-TOKEN: $CI_JOB_TOKEN" \
--output artifacts.zip \
"https://gitlab.com/$CI_PROJECT_NAMESPACE/building-blocks/-/jobs/artifacts/main/download?job=pages"
- unzip artifacts.zip -d charts
- mv charts/public/index.yaml public/index.yaml
- mv charts/public/blocks-*.tgz public/
- rm -fr artifacts.zip charts
# Build and package Helm Chart
- helm package kubernetes/helm-chart --destination public
- helm repo index public --url https://castlecraft.gitlab.io/building-blocks
artifacts:
paths:
- public