-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
436 lines (362 loc) · 10.3 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
436
stages:
- docker # create images that are needed by the rest of the build
- build # create any outputs of the project (binaries, containers, charts…)
- test # all quality checks
- deploy # export the outputs (publish to an artifact registry, deploy on a server…)
include:
- remote: https://gitlab.com/opensavvy/ci-templates/-/raw/main/version.gitlab-ci.yml
- remote: https://gitlab.com/opensavvy/ci-templates/-/raw/main/mirror.gitlab-ci.yml
- remote: https://gitlab.com/opensavvy/ci-templates/-/raw/main/gradle.gitlab-ci.yml
- remote: https://gitlab.com/opensavvy/ci-templates/-/raw/main/docker.gitlab-ci.yml
- local: docs/website/.gitlab-ci.yml
variables:
# https://gitlab.com/opensavvy/automation/containers
ci_containers: 0.5.0
# Kotlin Multiplatform
kotlin_jvm: "yes"
kotlin_js_browser: "yes"
kotlin_js_node: "no"
kotlin_native_linuxX64: "yes"
kotlin_native_iosArm64: "yes"
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
- if: $CI_PIPELINE_SOURCE == 'schedule'
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_TAG
# region Kotlin Multiplatform
.kotlin-jvm:
extends: [ .os.gradle ]
image: registry.gitlab.com/opensavvy/automation/containers/android:$ci_containers
needs: [ os.version ]
.kotlin-js-browser:
extends: [ .os.gradle ]
image: registry.gitlab.com/opensavvy/automation/containers/chromium:$ci_containers
needs: [ os.version ]
.kotlin-js-node:
extends: [ .os.gradle ]
image: registry.gitlab.com/opensavvy/automation/containers/nodejs:$ci_containers
needs: [ os.version ]
.kotlin-native-linuxX64:
extends: [ .os.gradle ]
image: registry.gitlab.com/opensavvy/automation/containers/java:$ci_containers
needs: [ os.version ]
.kotlin-native-iosArm64:
extends: [ .os.gradle ]
image: macos-14-xcode-15
needs: [ os.version ]
before_script:
- xcodebuild -downloadPlatform iOS
tags:
- saas-macos-medium-m1
retry:
max: 1
exit_codes:
- 1 # Sometimes, the runner breaks and doesn't actually run the test
# endregion
# region Check
check[jvm]:
extends: [ .kotlin-jvm ]
stage: test
script:
- >
./gradlew check
:koverLog
:koverHtmlReport
-x jsBrowserTest
-x jsNodeTest
-x wasmJsBrowserTest
-x wasmJsNodeTest
-x wasmWasiNodeTest
-x linuxX64Test
-x mingwX64Test
-x macosX64Test
-x macosArm64Test
-x iosX64Test
-x iosSimulatorArm64Test
-x watchosX64Test
-x tvosX64Test
koverVerify --rerun
-PappVersion=$project_version
after_script:
- mkdir -p jvm-cover-report
- mv build/reports/kover/html/* jvm-cover-report
coverage: '/application line coverage: (\d+\.?\d*%)/'
artifacts:
paths:
- jvm-cover-report
expose_as: JVM code coverage
interruptible: true
check[jsBrowser]:
extends: [ .kotlin-js-browser ]
stage: test
script:
- >
./gradlew jsBrowserTest wasmJsBrowserTest
-PappVersion=$project_version
interruptible: true
check[nodeJs]:
extends: [ .kotlin-js-node ]
stage: test
script:
- >
./gradlew jsNodeTest wasmJsNodeTest wasmWasiNodeTest
-PappVersion=$project_version
interruptible: true
check[linuxX64]:
extends: [ .kotlin-native-linuxX64 ]
stage: test
script:
- >
./gradlew linuxX64Test mingwX64Test
-PappVersion=$project_version
interruptible: true
check[iosArm64]:
extends: [ .kotlin-native-iosArm64 ]
stage: test
script:
- >
./gradlew
iosSimulatorArm64Test
watchosSimulatorArm64Test
--no-configuration-cache
-PappVersion=$project_version
interruptible: true
# endregion
# region Demo
demo:js:
extends: [ .kotlin-js-node ]
stage: build
script:
- >
./gradlew :demo:composeApp:viteBuild
-PappVersion=$project_version
after_script:
- mkdir -p demo-js
- mv demo/composeApp/build/vite/dist/* demo-js
- PREFIX="$CI_PROJECT_ROOT_NAMESPACE/"
- echo "URL=https://$CI_PROJECT_ROOT_NAMESPACE.$CI_PAGES_DOMAIN/-/${CI_PROJECT_PATH//$PREFIX}/-/jobs/$CI_JOB_ID/artifacts/demo-js/index.html" >>deploy.env
artifacts:
paths:
- demo-js
reports:
dotenv: deploy.env
environment:
name: review/$CI_COMMIT_REF_SLUG/demo-js
url: $URL
deployment_tier: development
interruptible: true
# endregion
# region Publishing
publish-maven:gitlab:
extends: [ .kotlin-jvm ]
needs:
- os.version
stage: deploy
script:
- >
./gradlew publishAllPublicationsToGitLabRepository
--no-configuration-cache
-PappVersion=$project_version
interruptible: false
rules:
- if: $PUBLISH_MAVEN == "no" || $PUBLISH_MAVEN_GITLAB == "no"
when: never
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_TAG
publish-maven:gitlab[ios]:
extends: [ .kotlin-native-iosArm64 ]
needs:
- os.version
stage: deploy
script:
- >
./gradlew
publishIosArm64PublicationToGitLabRepository
publishIosSimulatorArm64PublicationToGitLabRepository
publishIosX64PublicationToGitLabRepository
publishMacosX64PublicationToGitLabRepository
publishMacosArm64PublicationToGitLabRepository
publishWatchosX64PublicationToGitLabRepository
publishWatchosArm32PublicationToGitLabRepository
publishWatchosArm64PublicationToGitLabRepository
publishWatchosSimulatorArm64PublicationToGitLabRepository
publishTvosX64PublicationToGitLabRepository
publishTvosArm64PublicationToGitLabRepository
publishTvosSimulatorArm64PublicationToGitLabRepository
--no-configuration-cache
-PappVersion=$project_version
interruptible: false
rules:
- if: $PUBLISH_MAVEN == "no" || $PUBLISH_MAVEN_GITLAB == "no" || $PUBLISH_MAVEN_IOS == "no"
when: never
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_TAG
publish-maven:central:initialize:
extends: [ .kotlin-jvm ]
needs:
- os.version
stage: deploy
script:
- >
./gradlew initializeSonatypeStagingRepository
--no-configuration-cache
-PappVersion=$project_version
interruptible: false
rules:
- if: $OSSRH_USERNAME == null || $OSSRH_PASSWORD == null
when: never
- if: $PUBLISH_MAVEN == "no" || $PUBLISH_MAVEN_CENTRAL == "no"
when: never
- if: $CI_COMMIT_TAG
publish-maven:central:
extends: [ .kotlin-jvm ]
needs:
- os.version
- publish-maven:central:initialize
stage: deploy
script:
- export SIGNING_KEY_RING=$(mktemp)
- <"$SIGNING_KEY_RING_B64" base64 -d >"$SIGNING_KEY_RING"
- >
./gradlew findSonatypeStagingRepository publishToSonatype
-x initializeSonatypeStagingRepository
--no-configuration-cache
-PappVersion=$project_version
interruptible: false
rules:
- if: $OSSRH_USERNAME == null || $OSSRH_PASSWORD == null
when: never
- if: $PUBLISH_MAVEN == "no" || $PUBLISH_MAVEN_CENTRAL == "no"
when: never
- if: $CI_COMMIT_TAG
publish-maven:central[ios]:
extends: [ .kotlin-native-iosArm64 ]
needs:
- os.version
- publish-maven:central:initialize
stage: deploy
script:
- export SIGNING_KEY_RING=$(mktemp)
- <"$SIGNING_KEY_RING_B64" base64 -d >"$SIGNING_KEY_RING"
- >
./gradlew findSonatypeStagingRepository publishToSonatype
-x initializeSonatypeStagingRepository
--no-configuration-cache
-PappVersion=$project_version
interruptible: false
rules:
- if: $OSSRH_USERNAME == null || $OSSRH_PASSWORD == null
when: never
- if: $PUBLISH_MAVEN == "no" || $PUBLISH_MAVEN_CENTRAL == "no" || $PUBLISH_MAVEN_IOS == "no"
when: never
- if: $CI_COMMIT_TAG
publish-maven:central:release:
extends: [ .kotlin-jvm ]
needs:
- job: os.version
- job: publish-maven:central
- job: publish-maven:central[ios]
optional: true
stage: deploy
script:
- >
./gradlew findSonatypeStagingRepository closeAndReleaseSonatypeStagingRepository
--no-configuration-cache
-PappVersion=$project_version
interruptible: false
rules:
- if: $OSSRH_USERNAME == null || $OSSRH_PASSWORD == null
when: never
- if: $PUBLISH_MAVEN == "no" || $PUBLISH_MAVEN_CENTRAL == "no"
when: never
- if: $CI_COMMIT_TAG
# endregion
# region API documentation
dokka:
extends: [ .kotlin-jvm ]
stage: build
needs: [ os.version ]
script:
- >
./gradlew :dokkatooGeneratePublicationHtml
--no-configuration-cache
-PappVersion=$project_version
after_script:
- mkdir -p api-docs
- mv build/dokka/html/* api-docs
- PREFIX="$CI_PROJECT_ROOT_NAMESPACE/"
- echo "URL=https://$CI_PROJECT_ROOT_NAMESPACE.$CI_PAGES_DOMAIN/-/${CI_PROJECT_PATH//$PREFIX}/-/jobs/$CI_JOB_ID/artifacts/api-docs/index.html" >>deploy.env
artifacts:
paths:
- api-docs
reports:
dotenv: deploy.env
environment:
name: review/$CI_COMMIT_REF_SLUG/api-docs
url: $URL
deployment_tier: development
interruptible: true
# endregion
# region Qodana
qodana[jvm]:
needs: [ ]
image:
name: jetbrains/qodana-jvm-community
entrypoint: [ "" ]
script:
- qodana
artifacts:
paths:
- qodana
rules:
- if: $QODANA_TOKEN == null
when: never
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_TAG
allow_failure: true
- when: manual
allow_failure: true
# endregion
# region Automatically mirror the previous layer of the playground
mirror-playground:
stage: deploy
extends: [ .os.mirror ]
needs: [ ]
variables:
url: "$playground_parent"
name: "$playground_parent_name"
key: "$playground_mirroring_key"
key_public: "$playground_mirroring_key_public"
rules:
- if: $playground_parent == null || $playground_parent_name == null
when: never
- if: $playground_mirroring_key == null || $playground_mirroring_key_public == null
when: never
- if: $CI_PIPELINE_SOURCE == 'schedule'
- when: manual
allow_failure: true
# endregion
# region GitLab Pages
pages:
image: alpine:latest
stage: deploy
needs:
- job: mkdocs
artifacts: true
- job: dokka
artifacts: true
- job: demo:js
artifacts: true
script:
- mkdir -p public
- mv docs-website public/docs
- mv api-docs public
- mv demo-js public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_TAG
interruptible: false
# endregion