forked from DataDog/browser-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
449 lines (399 loc) · 11.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
437
438
439
440
441
442
443
444
445
446
447
448
449
variables:
CURRENT_STAGING: staging-19
APP: 'browser-sdk'
CURRENT_CI_IMAGE: 31
BUILD_STABLE_REGISTRY: '486234852809.dkr.ecr.us-east-1.amazonaws.com'
CI_IMAGE: '$BUILD_STABLE_REGISTRY/ci/$APP:$CURRENT_CI_IMAGE'
GIT_REPOSITORY: '[email protected]:DataDog/browser-sdk.git'
MAIN_BRANCH: 'main'
CHROME_PACKAGE_VERSION: 99.0.4844.51-1
CHROME_DRIVER_VERSION: 99.0.4844.51
cache:
key: dependencies
paths:
- node_modules/
stages:
- task
- ci-image
- test
- after-tests
- browserstack
- pre-deploy
- pre-deploy-notify
- deploy:canary
- notify:canary
- deploy
- notify
.base-configuration:
tags: ['runner:main', 'size:large']
image: $CI_IMAGE
########################################################################################################################
# Branch selection helpers
########################################################################################################################
.test-allowed-branches:
except:
refs:
- /^release\//
- schedules
.bs-allowed-branches:
except:
refs:
- main
- /^staging-[0-9]+$/
- /^release\//
- schedules
.feature-branches:
except:
refs:
- main
- tags
- /^staging-[0-9]+$/
- /^release\//
- schedules
.staging:
only:
variables:
- $CI_COMMIT_REF_NAME == $CURRENT_STAGING
.main:
only:
refs:
- main
except:
refs:
- schedules
variables:
- $CI_COMMIT_TITLE =~ /^v[0-9.]+/
.tags:
only:
refs:
- tags
########################################################################################################################
# CI image
########################################################################################################################
ci-image:
stage: ci-image
extends:
- .base-configuration
- .feature-branches
when: manual
tags: ['runner:docker', 'size:large']
image: $BUILD_STABLE_REGISTRY/docker:18.03.1
script:
- docker build --build-arg CHROME_PACKAGE_VERSION=$CHROME_PACKAGE_VERSION --tag $CI_IMAGE .
- docker push $CI_IMAGE
########################################################################################################################
# Tests
########################################################################################################################
format:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn
- yarn format
woke:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn woke
typecheck:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn
- yarn typecheck
build-and-lint:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn
- yarn build
- yarn lint
- scripts/cli typecheck test/app
- scripts/cli typecheck test/e2e
build-bundle:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn
- yarn build:bundle
compatibility:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn
- yarn test:compat:tsc
- yarn test:compat:ssr
unit:
extends:
- .base-configuration
- .test-allowed-branches
artifacts:
reports:
junit: test-report/unit/*.xml
script:
- yarn
- yarn test:unit
- ./scripts/codecov.sh
after_script:
- node ./scripts/export-test-result.js unit
e2e:
extends:
- .base-configuration
- .test-allowed-branches
artifacts:
when: always
reports:
junit: test-report/e2e/*.xml
script:
- yarn
- yarn test:e2e
after_script:
- node ./scripts/export-test-result.js e2e
check-licenses:
extends:
- .base-configuration
- .test-allowed-branches
script:
- yarn
- node --no-warnings scripts/check-licenses.js
unit-bs:
stage: browserstack
extends:
- .base-configuration
- .bs-allowed-branches
resource_group: browserstack
artifacts:
reports:
junit: test-report/unit-bs/*.xml
script:
- yarn
- ./scripts/ci-bs.sh test:unit
after_script:
- node ./scripts/export-test-result.js unit-bs
e2e-bs:
stage: browserstack
extends:
- .base-configuration
- .bs-allowed-branches
resource_group: browserstack
artifacts:
when: always
reports:
junit: test-report/e2e-bs/*.xml
script:
- yarn
- ./scripts/ci-bs.sh test:e2e
after_script:
- node ./scripts/export-test-result.js e2e-bs
########################################################################################################################
# Deploy
########################################################################################################################
deploy-staging:
stage: deploy
extends:
- .base-configuration
- .staging
script:
- yarn
- BUILD_MODE=canary yarn build:bundle
- ./scripts/deploy.sh staging staging
deploy-prod-canary:
stage: deploy:canary
extends:
- .base-configuration
- .main
script:
- yarn
- BUILD_MODE=canary yarn build:bundle
- ./scripts/deploy.sh prod canary
deploy-prod-stable:
stage: deploy
extends:
- .base-configuration
- .tags
when: manual
allow_failure: false
script:
- yarn
- BUILD_MODE=release yarn build:bundle
- VERSION=$(node -p -e "require('./lerna.json').version")
- ./scripts/deploy.sh prod v${VERSION%%.*}
########################################################################################################################
# Notify
########################################################################################################################
include: 'https://gitlab-templates.ddbuild.io/slack-notifier/v1/template.yml'
notify-feature-branch-failure:
extends:
- .slack-notifier.on-failure
- .feature-branches
.prepare_notification:
extends: .slack-notifier-base
before_script:
- COMMIT_MESSAGE=`git show-branch --no-name HEAD`
- BUILD_URL="$CI_PROJECT_URL/pipelines/$CI_PIPELINE_ID"
- COMMIT_URL="$CI_PROJECT_URL/commits/$CI_COMMIT_SHA"
notify-staging-failure:
extends:
- .prepare_notification
- .staging
when: on_failure
script:
- 'MESSAGE_TEXT=":host-red: $CI_PROJECT_NAME main pipeline for <$BUILD_URL|$COMMIT_MESSAGE> failed."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
notify-release-ready:
stage: pre-deploy-notify
extends:
- .prepare_notification
- .tags
script:
- 'MESSAGE_TEXT=":i: $CI_PROJECT_NAME <$BUILD_URL|$COMMIT_MESSAGE> ready to be deployed to :datadog:"'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
notify-prod-canary-success:
stage: notify:canary
extends:
- .prepare_notification
- .main
script:
- 'MESSAGE_TEXT=":rocket: $CI_PROJECT_NAME <$COMMIT_URL|$COMMIT_MESSAGE> deployed to :datadog:."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
- postmessage "#rum-browser-sdk-ops" "$MESSAGE_TEXT"
notify-prod-canary-failure:
stage: notify:canary
extends:
- .prepare_notification
- .main
when: on_failure
script:
- 'MESSAGE_TEXT=":host-red: $CI_PROJECT_NAME release pipeline <$BUILD_URL|$COMMIT_MESSAGE> failed."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
notify-prod-stable-success:
extends:
- .prepare_notification
- .tags
script:
- 'MESSAGE_TEXT=":rocket: $CI_PROJECT_NAME <$COMMIT_URL|$COMMIT_MESSAGE> deployed to :earth_americas:."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
- postmessage "#rum-browser-sdk-ops" "$MESSAGE_TEXT"
notify-prod-stable-failure:
extends:
- .prepare_notification
- .tags
when: on_failure
script:
- 'MESSAGE_TEXT=":host-red: $CI_PROJECT_NAME release pipeline <$BUILD_URL|$COMMIT_MESSAGE> failed."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
########################################################################################################################
# To staging CI
########################################################################################################################
staging-reset-scheduled:
stage: task
extends: .base-configuration
only:
variables:
- $TARGET_TASK_NAME == "staging-reset-scheduled"
before_script:
- eval $(ssh-agent -s)
script:
- yarn
- node scripts/staging-ci/staging-reset.js
artifacts:
reports:
dotenv: build.env
staging-reset-scheduled-success:
extends: .prepare_notification
only:
variables:
- $TARGET_TASK_NAME == "staging-reset-scheduled"
script:
- 'MESSAGE_TEXT=":white_check_mark: [*$CI_PROJECT_NAME*] Staging has been reset from *${CURRENT_STAGING}* to *${NEW_STAGING}* on pipeline <$BUILD_URL|$COMMIT_MESSAGE>."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
dependencies:
- staging-reset-scheduled
staging-reset-scheduled-failure:
extends: .prepare_notification
only:
variables:
- $TARGET_TASK_NAME == "staging-reset-scheduled"
when: on_failure
script:
- 'MESSAGE_TEXT=":x: [*$CI_PROJECT_NAME*] Staging failed to reset from *${CURRENT_STAGING}* to *${NEW_STAGING}* on pipeline <$BUILD_URL|$COMMIT_MESSAGE>."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
dependencies:
- staging-reset-scheduled
merge-into-staging:
stage: pre-deploy
extends:
- .base-configuration
- .main
before_script:
- eval $(ssh-agent -s)
script:
- yarn
- node scripts/staging-ci/merge-into-staging.js
check-staging-merge:
stage: test
extends:
- .base-configuration
- .feature-branches
before_script:
- eval $(ssh-agent -s)
script:
- yarn
- node scripts/staging-ci/check-staging-merge.js
# A noop job that's used to signal to `to-staging` that it can merge to the
# staging branch, even though the pipeline is still running
tests-passed:
stage: after-tests
extends:
- .base-configuration
- .feature-branches
script:
- 'true'
# in after-tests to not block `to-staging` merge
check-squash-into-staging:
stage: after-tests
allow_failure: true
extends:
- .base-configuration
- .feature-branches
before_script:
- eval $(ssh-agent -s)
script:
- yarn
- node scripts/staging-ci/check-squash-into-staging.js
########################################################################################################################
# Bump e2e chrome version
########################################################################################################################
bump-chrome-version-scheduled:
stage: task
extends: .base-configuration
only:
variables:
- $TARGET_TASK_NAME == "bump-chrome-version-scheduled"
before_script:
- eval $(ssh-agent -s)
script:
- node scripts/bump-chrome-driver-version.js
bump-chrome-version-scheduled-success:
extends: .prepare_notification
only:
variables:
- $TARGET_TASK_NAME == "bump-chrome-version-scheduled"
script:
- 'MESSAGE_TEXT=":chrome: [*$CI_PROJECT_NAME*] New Chrome version available on <https://github.com/DataDog/browser-sdk/pulls|PRs>."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"
bump-chrome-version-scheduled-failure:
extends: .prepare_notification
only:
variables:
- $TARGET_TASK_NAME == "bump-chrome-version-scheduled"
when: on_failure
script:
- 'MESSAGE_TEXT=":x: [*$CI_PROJECT_NAME*] Chrome version bumped failed on pipeline <$BUILD_URL|$COMMIT_MESSAGE>."'
- postmessage "#browser-sdk-deploy" "$MESSAGE_TEXT"