@@ -167,6 +167,14 @@ build-image-master-server:
167
167
DOCKER_NAME : " registry.gitlab.com/postgres-ai/database-lab/dblab-server"
168
168
TAGS : " ${DOCKER_NAME}:master,${DOCKER_NAME}:master-${CI_COMMIT_SHORT_SHA}"
169
169
170
+ build-image-master-ci-checker :
171
+ << : *build_image_definition
172
+ << : *only_master
173
+ variables :
174
+ DOCKER_FILE : " Dockerfile.ci-checker"
175
+ DOCKER_NAME : " registry.gitlab.com/postgres-ai/database-lab/dblab-ci-checker"
176
+ TAGS : " ${DOCKER_NAME}:master,${DOCKER_NAME}:master-${CI_COMMIT_SHORT_SHA}"
177
+
170
178
build-image-master-client :
171
179
<< : *build_image_definition
172
180
<< : *only_master
@@ -188,6 +196,19 @@ build-image-latest-server:
188
196
- export LATEST_TAG=$(echo ${CI_COMMIT_TAG%.*}-latest)
189
197
- export TAGS="${DOCKER_NAME}:${LATEST_TAG},${DOCKER_NAME}:${CI_COMMIT_TAG}"
190
198
199
+ build-image-latest-ci-checker :
200
+ << : *build_image_definition
201
+ << : *only_tag_release
202
+ variables :
203
+ REGISTRY_USER : " ${DH_CI_REGISTRY_USER}"
204
+ REGISTRY_PASSWORD : " ${DH_CI_REGISTRY_PASSWORD}"
205
+ REGISTRY : " ${DH_CI_REGISTRY}"
206
+ DOCKER_FILE : " Dockerfile.ci-checker"
207
+ DOCKER_NAME : " postgresai/dblab-ci-checker"
208
+ before_script :
209
+ - export LATEST_TAG=$(echo ${CI_COMMIT_TAG%.*}-latest)
210
+ - export TAGS="${DOCKER_NAME}:${LATEST_TAG},${DOCKER_NAME}:${CI_COMMIT_TAG}"
211
+
191
212
build-image-latest-client :
192
213
<< : *build_image_definition
193
214
<< : *only_tag_release
@@ -212,6 +233,17 @@ build-image-rc-server:
212
233
DOCKER_NAME : " postgresai/dblab-server"
213
234
TAGS : " ${DOCKER_NAME}:${CI_COMMIT_TAG}"
214
235
236
+ build-image-rc-ci-checker :
237
+ << : *build_image_definition
238
+ << : *only_tag_rc
239
+ variables :
240
+ REGISTRY_USER : " ${DH_CI_REGISTRY_USER}"
241
+ REGISTRY_PASSWORD : " ${DH_CI_REGISTRY_PASSWORD}"
242
+ REGISTRY : " ${DH_CI_REGISTRY}"
243
+ DOCKER_FILE : " Dockerfile.ci-checker"
244
+ DOCKER_NAME : " postgresai/dblab-ci-checker"
245
+ TAGS : " ${DOCKER_NAME}:${CI_COMMIT_TAG}"
246
+
215
247
build-image-rc-client :
216
248
<< : *build_image_definition
217
249
<< : *only_tag_rc
0 commit comments