-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
146 lines (140 loc) · 3.58 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
stages:
- build-and-lint
- deploy
build-and-lint-ui:
tags:
- dalfcs_gitlab_docker_ci
stage: build-and-lint
image: node:21.7.1
before_script:
- corepack enable
- corepack prepare pnpm@latest-8 --activate
- pnpm config set store-dir .pnpm-store
script:
- cd services/ui
- pnpm install
- pnpm lint
- pnpm build
cache:
key:
files:
- pnpm-lock.yaml
paths:
- .pnpm-store
only:
changes:
- services/ui/**
build-and-lint-api:
tags:
- dalfcs_gitlab_docker_ci
stage: build-and-lint
image: node:21.7.1
before_script:
- corepack enable
- corepack prepare pnpm@latest-8 --activate
- pnpm config set store-dir .pnpm-store
script:
- cd services/api
- pnpm install
- pnpm lint
- pnpm build
cache:
key:
files:
- pnpm-lock.yaml
paths:
- .pnpm-store
only:
changes:
- services/api/**
build-controller:
tags:
- dalfcs_gitlab_docker_ci
stage: build-and-lint
image: golang:latest
script:
- make build-controller
only:
changes:
- services/controller/**
deploy-ui-image:
tags:
- dalfcs_gitlab_docker_ci
services:
- name: docker:20-dind
alias: docker
command: ["--tls=false"]
stage: deploy
image: docker:20-dind
variables:
DOCKER_IMAGE_NAME: $CI_REGISTRY_UI_IMAGE:$CI_COMMIT_REF_SLUG
DOCKER_HOST: tcp://docker:2375
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
- DOCKER_BUILDKIT=1 docker build --pull -t "$DOCKER_IMAGE_NAME" services/ui
- docker push "$DOCKER_IMAGE_NAME"
- |
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
docker tag "$DOCKER_IMAGE_NAME" "$CI_REGISTRY_UI_IMAGE:latest"
docker push "$CI_REGISTRY_UI_IMAGE:latest"
fi
only:
changes:
- services/ui/**
deploy-api-image:
tags:
- dalfcs_gitlab_docker_ci
services:
- name: docker:20-dind
alias: docker
command: ["--tls=false"]
stage: deploy
image: docker:20-dind
variables:
DOCKER_IMAGE_NAME: $CI_REGISTRY_API_IMAGE:$CI_COMMIT_REF_SLUG
DOCKER_HOST: tcp://docker:2375
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
- DOCKER_BUILDKIT=1 docker build --pull -t "$DOCKER_IMAGE_NAME" services/api
- docker push "$DOCKER_IMAGE_NAME"
- |
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
docker tag "$DOCKER_IMAGE_NAME" "$CI_REGISTRY_API_IMAGE:latest"
docker push "$CI_REGISTRY_API_IMAGE:latest"
fi
only:
changes:
- services/api/**
deploy-controller-image:
tags:
- dalfcs_gitlab_docker_ci
services:
- name: docker:20-dind
alias: docker
command: ["--tls=false"]
stage: deploy
image: docker:20-dind
variables:
DOCKER_IMAGE_NAME: $CI_REGISTRY_CONTROLLER_IMAGE:$CI_COMMIT_REF_SLUG
DOCKER_HOST: tcp://docker:2375
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
- DOCKER_BUILDKIT=1 docker build -t "$DOCKER_IMAGE_NAME" services/controller
- docker push "$DOCKER_IMAGE_NAME"
- |
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
docker tag "$DOCKER_IMAGE_NAME" "$CI_REGISTRY_CONTROLLER_IMAGE:latest"
docker push "$CI_REGISTRY_CONTROLLER_IMAGE:latest"
fi
only:
changes:
- services/controller/**