-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
255 lines (191 loc) · 6.5 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
# 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"
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic"
test:
stage: test
image: golang:1.21-alpine3.18
before_script:
- apk --update add make bash gcc musl-dev
- (cd /go; go install gotest.tools/gotestsum@v1.10.1)
- (cd /go; go install github.com/boumenot/gocover-cobertura@v1.2.0)
script:
- make test-ci
artifacts:
when: always
reports:
junit: tests.xml
coverage_report:
coverage_format: cobertura
path: coverage.xml
paths:
- tests.xml
- coverage.html
- coverage.xml
expire_in: never
coverage: '/coverage: \d+\.\d+% of statements/'
test_e2e:
stage: test
image: golang:1.21-alpine3.18
services:
- docker:23-dind
variables:
DOCKER_HOST: tcp://docker:2375
before_script:
- apk --update add docker-cli-buildx make bash gcc musl-dev
- (cd /go; go install github.com/boumenot/gocover-cobertura@v1.2.0)
- docker info
- echo "$CI_JOB_TOKEN" | docker login --username gitlab-ci-token --password-stdin "$CI_REGISTRY"
script:
- docker build --tag dinit --build-arg DINIT_BUILD_FLAGS="-race -cover -covermode atomic" .
- docker run --rm -v "$(pwd)/coverage:/coverage" -v "$(pwd)/tests/service:/etc/service" -e GOCOVERDIR=/coverage -e DINIT_LOG_LEVEL=debug dinit > >(tee -a defaults-stdout.log) 2> >(tee -a defaults-stderr.log >&2)
- docker run --rm -v "$(pwd)/coverage:/coverage" -v "$(pwd)/tests/service:/etc/service" -e GOCOVERDIR=/coverage -e DINIT_LOG_LEVEL=debug -e DINIT_REPARENTING_POLICY=adopt dinit > >(tee -a adopt-stdout.log) 2> >(tee -a adopt-stderr.log >&2)
- docker run --rm -v "$(pwd)/coverage:/coverage" -v "$(pwd)/tests/service:/etc/service" -e GOCOVERDIR=/coverage -e DINIT_LOG_LEVEL=debug -e DINIT_JSON_STDOUT=0 dinit > >(tee -a nojson-stdout.log) 2> >(tee -a nojson-stderr.log >&2)
- ./tests/compare.sh
- go tool covdata percent -i=coverage
- go tool covdata textfmt -i=coverage -o coverage.txt
- gocover-cobertura < coverage.txt > coverage.xml
- go tool cover -html=coverage.txt -o coverage.html
artifacts:
when: always
reports:
coverage_report:
coverage_format: cobertura
path: coverage.xml
paths:
- tests/results/*:*.log
- coverage.html
- coverage.xml
expire_in: never
coverage: '/coverage: \d+\.\d+% of statements/'
lint:
stage: test
image: golang:1.21-alpine3.18
before_script:
- apk --update add make bash gcc musl-dev
- wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
script:
- make lint-ci
artifacts:
when: always
reports:
codequality: codeclimate.json
expire_in: never
fmt:
stage: test
image: golang:1.21-alpine3.18
before_script:
- apk --update add make bash git gcc musl-dev grep
- go install mvdan.cc/gofumpt@v0.5.0
- go install golang.org/x/tools/cmd/goimports@v0.13.0
script:
- make fmt-ci
lint_docs:
stage: test
image: node:17-alpine3.14
before_script:
- apk --update add make bash
script:
- make lint-docs
audit:
stage: test
image: golang:1.21-alpine3.18
before_script:
- apk --update add make bash git gcc musl-dev
- go install github.com/sonatype-nexus-community/nancy@v1.0.42
script:
- make audit
commits:
stage: test
image: golang:1.21-alpine3.18
variables:
GIT_DEPTH: "0"
before_script:
- apk --update add git
script:
- '! git log --oneline "-G^(<<<<<<<|=======|>>>>>>>)" | grep "^"'
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"
script:
- docker build
--tag "$DOCKER_PIPELINE_IMAGE_NAME"
--tag "$CI_REGISTRY_IMAGE/commit:$CI_COMMIT_SHA" .
- docker push "$DOCKER_PIPELINE_IMAGE_NAME"
- docker push "$CI_REGISTRY_IMAGE/commit:$CI_COMMIT_SHA"
- export IMAGE_ID=$(docker create "$DOCKER_PIPELINE_IMAGE_NAME")
- docker cp "$IMAGE_ID:/dinit" dinit-linux-amd64
- docker rm "$IMAGE_ID"
artifacts:
expose_as: binaries
name: binaries
paths:
- dinit-linux-amd64
expire_in: never
# We want to run it as soon as possible and do not wait for test stage to finish.
needs: []
upload_binaries:
stage: deploy
image: curlimages/curl:8.1.2
script:
- 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file dinit-linux-amd64 "$PACKAGE_REGISTRY_URL/linux-amd64/${CI_COMMIT_REF_NAME#v}/dinit"'
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.21-alpine3.18
script:
- GOPROXY=proxy.golang.org go list -m "gitlab.com/tozd/dinit@$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 == "tozd/dinit"'
# 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: []