-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
435 lines (335 loc) · 11.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
# We prefer this order semantically, but in fact we
# run test and build jobs simultaneously.
stages:
- test
- build
- deploy
- sync
variables:
GIT_SUBMODULE_STRATEGY: recursive
# We want full history so that "git describe" always works correctly.
GIT_DEPTH: 0
FF_ENABLE_BASH_EXIT_CODE_CHECK: "true"
# We always want to run with the Go version installed in a Docker image.
GOTOOLCHAIN: local
DOCKER_PIPELINE_IMAGE_NAME: "$CI_REGISTRY_IMAGE/pipeline:$CI_PIPELINE_ID"
DOCKER_DRIVER: overlay2
DOCKER_BUILDKIT: "1"
FF_NETWORK_PER_BUILD: 1
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic"
test_go:
stage: test
image: golang:1.23.6-alpine3.21
services:
- name: elasticsearch:7.16.3
alias: elasticsearch
variables:
network.bind_host: 0.0.0.0
network.publish_host: elasticsearch
ES_JAVA_OPTS: "-Xmx1000m"
discovery.type: single-node
xpack.security.enabled: false
ingest.geoip.downloader.enabled: false
- name: registry.gitlab.com/tozd/docker/postgresql:16
alias: potgres
variables:
LOG_TO_STDOUT: 1
PGSQL_ROLE_1_USERNAME: test
PGSQL_ROLE_1_PASSWORD: test
PGSQL_DB_1_NAME: test
PGSQL_DB_1_OWNER: test
variables:
ELASTIC: http://elasticsearch:9200
POSTGRES: postgres://test:test@potgres:5432/test
before_script:
- apk --update add make bash gcc musl-dev mailcap git git-lfs jq
- git lfs fetch
- (cd /go; go install gotest.tools/[email protected])
- (cd /go; go install github.com/boumenot/[email protected])
- go version
script:
- make test-ci
artifacts:
when: always
reports:
junit: tests.xml
coverage_report:
coverage_format: cobertura
path: coverage.xml
paths:
- tests.json
- tests.xml
- coverage.html
- coverage.xml
expire_in: never
coverage: '/coverage: \d+\.\d+% of statements/'
test_node:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add git git-lfs
- git lfs fetch
script:
- npm ci --audit=false
- npm run test-ci
artifacts:
when: always
reports:
junit: tests.xml
coverage_report:
coverage_format: cobertura
path: coverage/cobertura-coverage.xml
paths:
- coverage/
exclude:
- coverage/tmp/
expire_in: never
coverage: '/^All files\s+\|\s+\S+\s+\|\s+\S+\s+\|\s+\S+\s+\|\s+\S+\s+\|/'
lint_go:
stage: test
image: golang:1.23.6-alpine3.21
before_script:
- apk --update add make bash gcc musl-dev git git-lfs
- git lfs fetch
- wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.5
script:
- make lint-ci
artifacts:
when: always
reports:
codequality: codeclimate.json
expire_in: never
lint_node:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add git git-lfs
- git lfs fetch
script:
- npm ci --audit=false
- npm run lint
- git diff --exit-code --color=always
lint_vue:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add git git-lfs
- git lfs fetch
script:
- npm ci --audit=false
- npm run lint-vue
lint_style:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add git git-lfs
- git lfs fetch
script:
- npm ci --audit=false
- npm run lint-style
- git diff --exit-code --color=always
fmt_go:
stage: test
image: golang:1.23.6-alpine3.21
before_script:
- apk --update add make bash git gcc musl-dev grep git-lfs
- git lfs fetch
- go install mvdan.cc/[email protected]
- go install golang.org/x/tools/cmd/[email protected]
script:
- make fmt-ci
fmt_node:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add git git-lfs
- git lfs fetch
script:
- npm ci --audit=false
- npm run fmt
- git diff --exit-code --color=always
lint_docs:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add make bash git git-lfs
- git lfs fetch
script:
- make lint-docs-ci
audit_go:
stage: test
image: golang:1.23.6-alpine3.21
before_script:
- apk --update add make bash git gcc musl-dev git-lfs
- git lfs fetch
- go install github.com/sonatype-nexus-community/[email protected]
script:
- make audit
audit_node:
stage: test
image: node:20.17-alpine3.20
before_script:
- apk --update add git git-lfs
- git lfs fetch
# Signatures audit is done during install in Dockerfile.
script:
- npm audit
commits:
stage: test
image: golang:1.23.6-alpine3.21
variables:
GIT_DEPTH: "0"
before_script:
- apk --update add git
script:
- '! git log --oneline "-G^(<<<<<<<|=======|>>>>>>>)" | grep "^"'
reuse:
stage: test
image:
name: fsfe/reuse:latest
entrypoint: [""]
script:
- reuse lint
docker:
stage: build
image: docker:23-git
services:
- docker:23-dind
before_script:
- docker info
- echo "$CI_JOB_TOKEN" | docker login --username gitlab-ci-token --password-stdin "$CI_REGISTRY"
- apk --update add git-lfs
- git lfs fetch
script:
- export BUILD_TIMESTAMP="$(date -u +%FT%TZ)"
- echo BUILD_TIMESTAMP "$BUILD_TIMESTAMP"
- export VERSION="$(git describe --tags --always --dirty=+)"
- echo VERSION "$VERSION"
- docker build
--target production
--tag "$DOCKER_PIPELINE_IMAGE_NAME"
--tag "$CI_REGISTRY_IMAGE/commit:$CI_COMMIT_SHA"
--build-arg BUILD_TIMESTAMP
--label "org.opencontainers.image.version=$VERSION"
--label "org.opencontainers.image.created=$BUILD_TIMESTAMP"
--label "org.opencontainers.image.revision=$CI_COMMIT_SHA"
--label "org.opencontainers.image.url=$CI_PROJECT_URL" .
- docker build
--target debug
--tag "$DOCKER_PIPELINE_IMAGE_NAME-debug"
--tag "$CI_REGISTRY_IMAGE/commit:$CI_COMMIT_SHA-debug"
--build-arg BUILD_TIMESTAMP
--label "org.opencontainers.image.version=$VERSION"
--label "org.opencontainers.image.created=$BUILD_TIMESTAMP"
--label "org.opencontainers.image.revision=$CI_COMMIT_SHA"
--label "org.opencontainers.image.url=$CI_PROJECT_URL" .
- docker push "$DOCKER_PIPELINE_IMAGE_NAME"
- docker push "$CI_REGISTRY_IMAGE/commit:$CI_COMMIT_SHA"
- docker push "$DOCKER_PIPELINE_IMAGE_NAME-debug"
- docker push "$CI_REGISTRY_IMAGE/commit:$CI_COMMIT_SHA-debug"
- export IMAGE_ID=$(docker create "$DOCKER_PIPELINE_IMAGE_NAME")
- docker cp "$IMAGE_ID:/peerdb" peerdb-linux-amd64
- docker rm "$IMAGE_ID"
artifacts:
expose_as: binaries
name: binaries
paths:
- peerdb-linux-amd64
expire_in: never
# We want to run it as soon as possible and do not wait for test stage to finish.
needs: []
push_branch:
stage: deploy
image: docker:23
services:
- docker:23-dind
before_script:
- docker info
- echo "$CI_JOB_TOKEN" | docker login --username gitlab-ci-token --password-stdin "$CI_REGISTRY"
# TODO: Improve so that pulling is not necessary. See: https://gitlab.com/gitlab-org/gitlab/-/issues/15252
script:
- docker pull "$DOCKER_PIPELINE_IMAGE_NAME"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME" "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:latest"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME" "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA"
- docker pull "$DOCKER_PIPELINE_IMAGE_NAME-debug"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME-debug" "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:latest-debug"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME-debug" "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA-debug"
- docker push "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:latest"
- docker push "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA"
- docker push "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:latest-debug"
- docker push "$CI_REGISTRY_IMAGE/branch/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA-debug"
rules:
- if: $CI_COMMIT_BRANCH
# We do not need build artifacts in this job.
dependencies: []
push_tag:
stage: deploy
image: docker:23
services:
- docker:23-dind
before_script:
- docker info
- echo "$CI_JOB_TOKEN" | docker login --username gitlab-ci-token --password-stdin "$CI_REGISTRY"
# TODO: Improve so that pulling is not necessary. See: https://gitlab.com/gitlab-org/gitlab/-/issues/15252
script:
- docker pull "$DOCKER_PIPELINE_IMAGE_NAME"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME" "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:latest"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME" "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA"
- docker pull "$DOCKER_PIPELINE_IMAGE_NAME-debug"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME-debug" "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:latest-debug"
- docker tag "$DOCKER_PIPELINE_IMAGE_NAME-debug" "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA-debug"
- docker push "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:latest"
- docker push "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA"
- docker push "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:latest-debug"
- docker push "$CI_REGISTRY_IMAGE/tag/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA-debug"
rules:
# Only on protected tags. Protected tags start with "v".
- if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_NAME =~ /^v/'
# We do not need build artifacts in this job.
dependencies: []
upload_binaries:
stage: deploy
image: curlimages/curl:8.1.2
script:
- 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file peerdb-linux-amd64 "$PACKAGE_REGISTRY_URL/linux-amd64/${CI_COMMIT_REF_NAME#v}/peerdb"'
rules:
# Only on protected tags. Protected tags start with "v".
- if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_NAME =~ /^v/'
dependencies:
- docker
publish:
stage: deploy
image: golang:1.23.6-alpine3.21
script:
- GOPROXY=proxy.golang.org go list -m "gitlab.com/peerdb/peerdb@$CI_COMMIT_REF_NAME"
rules:
# Only on protected tags on main repository. Protected tags start with "v".
- if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_NAME =~ /^v/ && $CI_PROJECT_PATH == "peerdb/peerdb"'
# We do not need build artifacts in this job.
dependencies: []
sync_releases:
stage: sync
image:
name: registry.gitlab.com/tozd/gitlab/release/tag/v0-6-0:latest-debug
entrypoint: [""]
script:
# On branch jobs, just update or remove releases, thus releases are created only on tag jobs.
- /gitlab-release ${CI_COMMIT_BRANCH:+--no-create}
rules:
# Protected tags start with "v".
- if: '$GITLAB_API_TOKEN && ($CI_COMMIT_BRANCH == "main" || ($CI_COMMIT_TAG && $CI_COMMIT_REF_NAME =~ /^v/))'
# We do not need build artifacts in this job.
dependencies: []
sync_config:
stage: sync
image:
name: registry.gitlab.com/tozd/gitlab/config/tag/v0-5-0:latest-debug
entrypoint: [""]
script:
- /gitlab-config set
rules:
- if: '$GITLAB_API_TOKEN && $SOPS_AGE_KEY_FILE && $CI_COMMIT_BRANCH == "main"'
changes:
- .gitlab-conf.yml
# We do not need build artifacts in this job.
dependencies: []