-
Notifications
You must be signed in to change notification settings - Fork 23
638 lines (498 loc) · 20.8 KB
/
ods.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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
name: Open Data Service (ODS)
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
# ----------------- ADAPTER SERVICE --------------------
adapter-build:
name: Adapter Build & Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
docker-compose -f docker-compose.yml build adapter
- name: Build Integration-test
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml build adapter-it
- name: Run Integration-test
# Only the logs from the services listed in the `docker-compose up` command are going to be printed to stdout
# To get logs from other services too, just add them to the `docker-compose up` command
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml up --exit-code-from adapter-it adapter adapter-it
docker-compose -f docker-compose.yml -f docker-compose.it.yml down
- name: Save Docker image as artifact
run: |
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/adapter
docker save $IMAGE_ID > adapter.tar
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: adapter-artifact
path: adapter.tar
retention-days: 1
# ----------------- SCHEDULER SERVICE --------------------
scheduler-build:
name: Scheduler Build & Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
docker-compose -f docker-compose.yml build scheduler
- name: Build Integration-test
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml build scheduler-it
- name: Run Integration-test
# Only the logs from the services listed in the `docker-compose up` command are going to be printed to stdout
# To get logs from other services too, just add them to the `docker-compose up` command
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml up --exit-code-from scheduler-it scheduler scheduler-it
docker-compose -f docker-compose.yml -f docker-compose.it.yml down
- name: Save Docker image as artifact
run: |
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/scheduler
docker save $IMAGE_ID > scheduler.tar
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: scheduler-artifact
path: scheduler.tar
retention-days: 1
# ----------------- STORAGE SERVICE --------------------
storage-build:
name: Storage Build & Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
docker-compose -f docker-compose.yml build storage
docker-compose -f docker-compose.yml build storage-db-liquibase
docker-compose -f docker-compose.yml build storage-mq
- name: Build Integration-test
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml build storage-it
- name: Run Integration-test
# Only the logs from the services listed in the `docker-compose up` command are going to be printed to stdout
# To get logs from other services too, just add them to the `docker-compose up` command
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml up -d storage-db
docker-compose -f docker-compose.yml -f docker-compose.it.yml up storage-db-liquibase
docker-compose -f docker-compose.yml -f docker-compose.it.yml up -d storage-mq storage
docker-compose -f docker-compose.yml -f docker-compose.it.yml up --exit-code-from storage-it storage-mq storage-it
docker-compose -f docker-compose.yml -f docker-compose.it.yml down
- name: Save Docker image as artifact
run: |
IMAGE_ID_STORAGE=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/storage
IMAGE_ID_LIQUIBASE=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/storage-db-liquibase
IMAGE_ID_STORAGEMQ=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/storage-mq
docker save $IMAGE_ID_STORAGE > storage_postgrest.tar
docker save $IMAGE_ID_LIQUIBASE > storage_liquibase.tar
docker save $IMAGE_ID_STORAGEMQ > storage_mq.tar
- name: Upload Storage Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: storage-artifact
path: storage_postgrest.tar
retention-days: 1
- name: Upload Liquibase Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: liquibase-artifact
path: storage_liquibase.tar
retention-days: 1
- name: Upload Storage-MQ Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: storagemq-artifact
path: storage_mq.tar
retention-days: 1
# The CDC-Test builds a cut-down image that would override the previously built production image
# Therefore it is executed after uploading the production image
- name: Consumer-side CDC-Test
run: |
bash ./storage/storage-mq/cdct-consumer.sh
- name: Upload contract files as artifact
uses: actions/upload-artifact@v2
with:
name: contracts
path: ./pacts/*.json
if-no-files-found: error
# ----------------- PIPELINE SERVICE --------------------
pipeline-build:
name: Pipeline Build & Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
docker-compose -f docker-compose.yml build pipeline
- name: Build Integration-test
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml build pipeline-it
- name: Run Integration-test
# Only the logs from the services listed in the `docker-compose up` command are going to be printed to stdout
# To get logs from other services too, just add them to the `docker-compose up` command
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml up --exit-code-from pipeline-it pipeline pipeline-it
docker-compose -f docker-compose.yml -f docker-compose.it.yml down
- name: Save Docker image as artifact
run: |
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/pipeline
docker save $IMAGE_ID > pipeline.tar
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: pipeline-artifact
path: pipeline.tar
retention-days: 1
# ----------------- NOTIFICATION SERVICE --------------------
notification-build:
name: Notification Build & Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
docker-compose -f docker-compose.yml build notification
- name: Build Integration-test
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml build notification-it
- name: Run Integration-test
# Only the logs from the services listed in the `docker-compose up` command are going to be printed to stdout
# To get logs from other services too, just add them to the `docker-compose up` command
run: |
docker-compose -f docker-compose.yml -f docker-compose.it.yml up --exit-code-from notification-it notification notification-it
docker-compose -f docker-compose.yml -f docker-compose.it.yml down
- name: Save Docker image as artifact
run: |
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/notification
docker save $IMAGE_ID > notification.tar
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: notification-artifact
path: notification.tar
retention-days: 1
# The CDC-Test builds a cut-down image that would override the previously built production image
# Therefore it is executed after uploading the production image
- name: Consumer-side CDC-Test
run: |
bash ./notification/cdct-consumer.sh
- name: Upload contract files as artifact
uses: actions/upload-artifact@v2
with:
name: contracts
path: ./pacts/*.json
if-no-files-found: error
# ----------------- UI SERVICE --------------------
ui-build:
name: UI Build & Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
docker-compose -f docker-compose.yml build ui
- name: Save Docker image as artifact
run: |
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/ui
docker save $IMAGE_ID > ui.tar
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v1
with:
name: ui-artifact
path: ui.tar
retention-days: 1
# The CDC-Test builds a cut-down image that would override the previously built production image
# Therefore it is executed after uploading the production image
- name: Consumer-side CDC-Test
run: |
bash ./ui/cdct-consumer.sh
- name: Upload Contract files as artifact
uses: actions/upload-artifact@v2
with:
name: contracts
path: ./pacts/*.json
if-no-files-found: error
# ----------------- Pipeline Provider-side CDC-Test -----------------
pipeline-provider:
name: Pipeline Provider-side CDC-Test
runs-on: ubuntu-18.04
needs: [pipeline-build, ui-build, notification-build, storage-build]
steps:
- uses: actions/checkout@v2
- name: Download contract files from artifact
uses: actions/download-artifact@v2
with:
name: contracts
path: ./pacts
- name: Build and Run
run: |
bash ./pipeline/cdct-provider.sh
# ----------------- Storage Provider-side CDC-Test -----------------
storage-provider:
name: Storage Provider-side CDC-Test
runs-on: ubuntu-18.04
needs: [storage-build, ui-build]
steps:
- uses: actions/checkout@v2
- name: Download contract files from artifact
uses: actions/download-artifact@v2
with:
name: contracts
path: ./pacts
- name: Build and Run
run: |
bash ./storage/storage-mq/cdct-provider.sh
# ----------------- SYSTEMTEST --------------------
systemtest:
name: Systemtest
runs-on: ubuntu-18.04
needs: [adapter-build, notification-build, scheduler-build, storage-build, pipeline-build, ui-build]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '16'
- name: Download adapter artifact
uses: actions/download-artifact@v1
with:
name: adapter-artifact
- name: Download scheduler artifact
uses: actions/download-artifact@v1
with:
name: scheduler-artifact
- name: Download storage artifact
uses: actions/download-artifact@v1
with:
name: storage-artifact
- name: Download liquibase artifact
uses: actions/download-artifact@v1
with:
name: liquibase-artifact
- name: Download storagemq artifact
uses: actions/download-artifact@v1
with:
name: storagemq-artifact
- name: Download pipeline artifact
uses: actions/download-artifact@v1
with:
name: pipeline-artifact
- name: Download notification artifact
uses: actions/download-artifact@v1
with:
name: notification-artifact
- name: Load images from artifacts
run: |
docker load -i ./scheduler-artifact/scheduler.tar
docker load -i ./storage-artifact/storage_postgrest.tar
docker load -i ./liquibase-artifact/storage_liquibase.tar
docker load -i ./storagemq-artifact/storage_mq.tar
docker load -i ./pipeline-artifact/pipeline.tar
docker load -i ./notification-artifact/notification.tar
docker load -i ./adapter-artifact/adapter.tar
- name: Install dependencies
working-directory: ./system-test
run: npm ci
- name: Run test
working-directory: ./system-test
run: npm run test
- name: Upload logs
if: success() || failure()
uses: actions/upload-artifact@v2
with:
name: SystemTestLogs
path: system-test/logs/*
# ----------------- Registry Upload --------------------
adapter_upload:
name: Adapter Publish
runs-on: ubuntu-18.04
needs: [systemtest]
if: github.repository == 'jvalue/ods' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Download adapter artifact
uses: actions/download-artifact@v1
with:
name: adapter-artifact
- name: Load Docker Image from artifact
run: |
docker load -i ./adapter-artifact/adapter.tar
- name: Adapter Push to registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/adapter
ADAPTER_VERSION=$(grep "version" ./adapter/src/main/resources/application.properties | sed "s/^app.version=//g")
if [[ "${{ github.ref }}" != refs/tags/* ]]
then
ADAPTER_VERSION=${ADAPTER_VERSION}-$(git rev-parse --short HEAD)
fi
docker tag $IMAGE_ID $IMAGE_ID:$ADAPTER_VERSION
docker tag $IMAGE_ID $IMAGE_ID:latest
docker push $IMAGE_ID:$ADAPTER_VERSION
docker push $IMAGE_ID:latest
scheduler_upload:
name: Scheduler Publish
runs-on: ubuntu-18.04
needs: [systemtest]
if: github.repository == 'jvalue/ods' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Download scheduler artifact
uses: actions/download-artifact@v1
with:
name: scheduler-artifact
- name: Load Docker Image from artifact
run: |
docker load -i ./scheduler-artifact/scheduler.tar
- name: Scheduler Push to registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/scheduler
SCHEDULER_VERSION=$(grep "version" scheduler/package.json | awk '{print $2}' | sed 's/[,"]//g')
if [[ "${{ github.ref }}" != refs/tags/* ]]
then
SCHEDULER_VERSION=${SCHEDULER_VERSION}-$(git rev-parse --short HEAD)
fi
docker tag $IMAGE_ID $IMAGE_ID:$SCHEDULER_VERSION
docker tag $IMAGE_ID $IMAGE_ID:latest
docker push $IMAGE_ID:$SCHEDULER_VERSION
docker push $IMAGE_ID:latest
storage_upload:
name: Storage Publish
runs-on: ubuntu-18.04
needs: [systemtest, storage-provider]
if: github.repository == 'jvalue/ods' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Download storage artifact
uses: actions/download-artifact@v1
with:
name: storage-artifact
- name: Download liquibase artifact
uses: actions/download-artifact@v1
with:
name: liquibase-artifact
- name: Download storage-mq artifact
uses: actions/download-artifact@v1
with:
name: storagemq-artifact
- name: Load Docker Images from artifacts
run: |
docker load -i ./storage-artifact/storage_postgrest.tar
docker load -i ./liquibase-artifact/storage_liquibase.tar
docker load -i ./storagemq-artifact/storage_mq.tar
- name: Storage Push to registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
STORAGE_VERSION=$(grep "VERSION" ./storage/version.txt | awk '{print $3}' | sed 's/[,"]//g')
if [[ "${{ github.ref }}" != refs/tags/* ]]
then
STORAGE_VERSION=${STORAGE_VERSION}-$(git rev-parse --short HEAD)
fi
IMAGE_ID_STORAGE=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/storage
IMAGE_ID_LIQUIBASE=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/storage-db-liquibase
IMAGE_ID_STORAGE_MQ=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/storage-mq
docker tag $IMAGE_ID_STORAGE $IMAGE_ID_STORAGE:$STORAGE_VERSION
docker tag $IMAGE_ID_STORAGE $IMAGE_ID_STORAGE:latest
docker tag $IMAGE_ID_LIQUIBASE $IMAGE_ID_LIQUIBASE:$STORAGE_VERSION
docker tag $IMAGE_ID_LIQUIBASE $IMAGE_ID_LIQUIBASE:latest
docker tag $IMAGE_ID_STORAGE_MQ $IMAGE_ID_STORAGE_MQ:$STORAGE_VERSION
docker tag $IMAGE_ID_STORAGE_MQ $IMAGE_ID_STORAGE_MQ:latest
docker push $IMAGE_ID_STORAGE:$STORAGE_VERSION
docker push $IMAGE_ID_STORAGE:latest
docker push $IMAGE_ID_LIQUIBASE:$STORAGE_VERSION
docker push $IMAGE_ID_LIQUIBASE:latest
docker push $IMAGE_ID_STORAGE_MQ:$STORAGE_VERSION
docker push $IMAGE_ID_STORAGE_MQ:latest
pipeline_upload:
name: Pipeline Publish
runs-on: ubuntu-18.04
needs: [systemtest, pipeline-provider]
if: github.repository == 'jvalue/ods' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Download pipeline artifact
uses: actions/download-artifact@v1
with:
name: pipeline-artifact
- name: Load Docker Image from artifact
run: |
docker load -i ./pipeline-artifact/pipeline.tar
- name: Pipeline Push to registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/pipeline
PIPELINE_VERSION=$(grep "version" ./pipeline/package.json | awk '{print $2}' | sed 's/[,"]//g')
if [[ "${{ github.ref }}" != refs/tags/* ]]
then
PIPELINE_VERSION=${PIPELINE_VERSION}-$(git rev-parse --short HEAD)
fi
docker tag $IMAGE_ID $IMAGE_ID:$PIPELINE_VERSION
docker tag $IMAGE_ID $IMAGE_ID:latest
docker push $IMAGE_ID:$PIPELINE_VERSION
docker push $IMAGE_ID:latest
notifcation_upload:
name: Notifcation Publish
runs-on: ubuntu-18.04
needs: [systemtest]
if: github.repository == 'jvalue/ods' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Download notifcation artifact
uses: actions/download-artifact@v1
with:
name: notification-artifact
- name: Load Docker Image from artifact
run: |
docker load -i ./notification-artifact/notification.tar
- name: Notifcation Push to registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/notification
NOTIFICATION_VERSION=$(grep "version" ./notification/package.json | awk '{print $2}' | sed 's/[,"]//g')
if [[ "${{ github.ref }}" != refs/tags/* ]]
then
NOTIFICATION_VERSION=${NOTIFICATION_VERSION}-$(git rev-parse --short HEAD)
fi
docker tag $IMAGE_ID $IMAGE_ID:$NOTIFICATION_VERSION
docker tag $IMAGE_ID $IMAGE_ID:latest
docker push $IMAGE_ID:$NOTIFICATION_VERSION
docker push $IMAGE_ID:latest
ui_upload:
name: UI Publish
runs-on: ubuntu-18.04
needs: [systemtest]
if: github.repository == 'jvalue/ods' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Download ui artifact
uses: actions/download-artifact@v1
with:
name: ui-artifact
- name: Load Docker Image from artifact
run: |
docker load -i ./ui-artifact/ui.tar
- name: UI Push to registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
IMAGE_ID=$(sed -n 's/^DOCKER_REGISTRY=//p' .env)/ui
UI_VERSION=$(grep "version" ./ui/package.json | awk '{print $2}' | sed 's/[,"]//g')
if [[ "${{ github.ref }}" != refs/tags/* ]]
then
UI_VERSION=${UI_VERSION}-$(git rev-parse --short HEAD)
fi
echo $UI_VERSION
docker tag $IMAGE_ID $IMAGE_ID:$UI_VERSION
docker tag $IMAGE_ID $IMAGE_ID:latest
docker push $IMAGE_ID:$UI_VERSION
docker push $IMAGE_ID:latest