forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
389 lines (352 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
stages:
- pre
- lint
- test
- ui-test
- smoke-test
- e2e-test
- benchmark-test
- dogfood
- release-build
- release-publish
- post
variables:
MAIN_BRANCH: "master"
DEVELOP_BRANCH: "develop"
# Default Xcode and runtime versions for all jobs:
DEFAULT_XCODE: "15.4.0"
DEFAULT_IOS_OS: "17.5"
DEFAULT_TVOS_OS: "17.5"
# Prefilled variables for running a pipeline manually:
# Ref.: https://docs.gitlab.com/ee/ci/pipelines/index.html#prefill-variables-in-manual-pipelines
RELEASE_GIT_TAG:
description: "The Git tag for the release pipeline. If set, release pipeline will be triggered for the given tag."
RELEASE_DRY_RUN:
value: "1"
description: "Controls the dry run mode for the release pipeline. If set to '1', the pipeline will execute all steps but will not publish artifacts. If set to '0', the pipeline will run fully."
default:
tags:
- macos:sonoma
- specific:true
# ┌───────────────┐
# │ Utility jobs: │
# └───────────────┘
# Utility jobs define rules for including or excluding dependent jobs from the pipeline.
#
# Ref.: https://docs.gitlab.com/ee/ci/jobs/job_rules.html
# > Rules are evaluated in order until the first match. When a match is found, the job is either included or excluded
# > from the pipeline, depending on the configuration.
.test-pipeline-job:
rules:
- if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH || $CI_COMMIT_BRANCH == $MAIN_BRANCH' # always on main branches
- if: '$CI_COMMIT_BRANCH' # when on other branch with following changes compared to develop
changes:
paths:
- "Datadog*/**/*"
- "IntegrationTests/**/*"
- "SmokeTests/**/*"
- "TestUtilities/**/*"
- "*" # match any file in the root directory
compare_to: 'develop' # cannot use $DEVELOP_BRANCH var due to: https://gitlab.com/gitlab-org/gitlab/-/issues/369916
.release-pipeline-job:
rules:
- if: '$CI_COMMIT_TAG || $RELEASE_GIT_TAG'
.release-pipeline-20m-delayed-job:
rules:
- if: '$CI_COMMIT_TAG || $RELEASE_GIT_TAG'
when: delayed
start_in: 20 minutes
.release-pipeline-40m-delayed-job:
rules:
- if: '$CI_COMMIT_TAG || $RELEASE_GIT_TAG'
when: delayed
start_in: 40 minutes
ENV check:
stage: pre
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
script:
- ./tools/runner-setup.sh --datadog-ci
- make env-check
# ┌──────────────────────────┐
# │ SDK changes integration: │
# └──────────────────────────┘
Lint:
stage: lint
rules:
- !reference [.test-pipeline-job, rules]
script:
- make clean repo-setup ENV=ci
- make lint license-check
- make rum-models-verify sr-models-verify
Unit Tests (iOS):
stage: test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
variables:
PLATFORM: "iOS Simulator"
DEVICE: "iPhone 15 Pro"
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make clean repo-setup ENV=ci
- make test-ios-all OS="$DEFAULT_IOS_OS" PLATFORM="$PLATFORM" DEVICE="$DEVICE" USE_TEST_VISIBILITY=1
Unit Tests (tvOS):
stage: test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
variables:
PLATFORM: "tvOS Simulator"
DEVICE: "Apple TV"
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make clean repo-setup ENV=ci
- make test-tvos-all OS="$DEFAULT_TVOS_OS" PLATFORM="$PLATFORM" DEVICE="$DEVICE" USE_TEST_VISIBILITY=1
UI Tests:
stage: ui-test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
variables:
PLATFORM: "iOS Simulator"
DEVICE: "iPhone 15 Pro"
parallel:
matrix:
- TEST_PLAN:
- Default
- RUM
- CrashReporting
- NetworkInstrumentation
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make clean repo-setup ENV=ci
- make ui-test TEST_PLAN="$TEST_PLAN" OS="$DEFAULT_IOS_OS" PLATFORM="$PLATFORM" DEVICE="$DEVICE"
SR Snapshot Tests:
stage: ui-test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
variables:
PLATFORM: "iOS Simulator"
DEVICE: "iPhone 15"
ARTIFACTS_PATH: "artifacts"
artifacts:
paths:
- artifacts
expire_in: 1 week
when: on_failure
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --ssh
- make clean repo-setup ENV=ci
- make sr-snapshots-pull sr-snapshot-test OS="$DEFAULT_IOS_OS" PLATFORM="$PLATFORM" DEVICE="$DEVICE" ARTIFACTS_PATH="$ARTIFACTS_PATH"
Tools Tests:
stage: test
rules:
- if: '$CI_COMMIT_BRANCH' # when on branch with following changes compared to develop
changes:
paths:
- "tools/**/*"
- "Makefile"
- ".gitlab-ci.yml"
compare_to: 'develop'
script:
- make clean repo-setup ENV=ci
- make tools-test
Benchmark Build:
stage: smoke-test
rules:
- if: '$CI_COMMIT_BRANCH' # when on branch with following changes compared to develop
changes:
paths:
- "BenchmarkTests/**/*"
compare_to: 'develop'
script:
- make benchmark-build
Smoke Tests (iOS):
stage: smoke-test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
variables:
PLATFORM: "iOS Simulator"
DEVICE: "iPhone 15 Pro"
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --ssh
- make clean repo-setup ENV=ci
- make smoke-test-ios-all OS="$DEFAULT_IOS_OS" PLATFORM="$PLATFORM" DEVICE="$DEVICE"
Smoke Tests (tvOS):
stage: smoke-test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
variables:
PLATFORM: "tvOS Simulator"
DEVICE: "Apple TV"
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --ssh
- make clean repo-setup ENV=ci
- make smoke-test-tvos-all OS="$DEFAULT_IOS_OS" PLATFORM="$PLATFORM" DEVICE="$DEVICE"
SPM Build (Swift 5.10):
stage: smoke-test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --iOS --tvOS --visionOS --watchOS
- make clean repo-setup ENV=ci
- make spm-build-ios
- make spm-build-tvos
- make spm-build-visionos
- make spm-build-macos
- make spm-build-watchos
SPM Build (Swift 5.9):
stage: smoke-test
rules:
- !reference [.test-pipeline-job, rules]
- !reference [.release-pipeline-job, rules]
tags:
- macos:ventura
- specific:true
variables:
XCODE: "15.2.0"
script:
- ./tools/runner-setup.sh --xcode "$XCODE" --iOS --tvOS --visionOS --watchOS
- make clean repo-setup ENV=ci
- make spm-build-ios
- make spm-build-tvos
- make spm-build-visionos
- make spm-build-macos
- make spm-build-watchos
# ┌──────────────────────┐
# │ E2E Test app upload: │
# └──────────────────────┘
E2E Test (upload to s8s):
stage: e2e-test
rules:
- if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH'
artifacts:
paths:
- artifacts
expire_in: 2 weeks
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --datadog-ci
- make clean
- export DRY_RUN=${DRY_RUN:-0} # default to 0 if not specified
- make e2e-upload ARTIFACTS_PATH="artifacts/e2e"
# ┌────────────────────────────┐
# │ Benchmark Test app upload: │
# └────────────────────────────┘
Benchmark Test (upload to s8s):
stage: benchmark-test
rules:
- if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH'
allow_failure: true
artifacts:
paths:
- artifacts
expire_in: 2 weeks
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --datadog-ci
- make clean
- export DRY_RUN=${DRY_RUN:-0} # default to 0 if not specified
- make benchmark-upload ARTIFACTS_PATH="artifacts/benchmark"
# ┌─────────────────┐
# │ SDK dogfooding: │
# └─────────────────┘
Dogfood (Shopist):
stage: dogfood
rules:
- if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH'
when: manual
allow_failure: true
script:
- ./tools/runner-setup.sh --ssh
- DRY_RUN=0 make dogfood-shopist
Dogfood (Datadog app):
stage: dogfood
rules:
- if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH'
when: manual
allow_failure: true
script:
- ./tools/runner-setup.sh --ssh
- DRY_RUN=0 make dogfood-datadog-app
# ┌──────────────┐
# │ SDK release: │
# └──────────────┘
.release-before-script: &export_MAKE_release_params
- export GIT_TAG=${RELEASE_GIT_TAG:-$CI_COMMIT_TAG} # CI_COMMIT_TAG if set, otherwise default to RELEASE_GIT_TAG
- if [ -z "$GIT_TAG" ]; then echo "GIT_TAG is not set"; exit 1; fi # sanity check
- export ARTIFACTS_PATH="artifacts/$GIT_TAG"
- export DRY_RUN=${CI_COMMIT_TAG:+0} # 0 if CI_COMMIT_TAG is set
- export DRY_RUN=${DRY_RUN:-$RELEASE_DRY_RUN} # otherwise default to RELEASE_DRY_RUN
Build Artifacts:
stage: release-build
rules:
- !reference [.release-pipeline-job, rules]
artifacts:
paths:
- artifacts
expire_in: 4 weeks
before_script:
- *export_MAKE_release_params
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --ssh
- make env-check
- make clean
- make release-build release-validate
Publish GH Asset:
stage: release-publish
rules:
- !reference [.release-pipeline-job, rules]
before_script:
- *export_MAKE_release_params
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make env-check
- make clean
- make release-publish-github
Publish CP podspecs (internal):
stage: release-publish
rules:
- !reference [.release-pipeline-job, rules]
before_script:
- *export_MAKE_release_params
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make env-check
- make clean
- make release-publish-internal-podspecs
Publish CP podspecs (dependent):
stage: release-publish
rules:
- !reference [.release-pipeline-20m-delayed-job, rules]
before_script:
- *export_MAKE_release_params
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make env-check
- make clean
- make release-publish-dependent-podspecs
Publish CP podspecs (legacy):
stage: release-publish
rules:
- !reference [.release-pipeline-40m-delayed-job, rules]
before_script:
- *export_MAKE_release_params
script:
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE"
- make env-check
- make clean
- make release-publish-legacy-podspecs
# ┌────────────────┐
# │ Notifications: │
# └────────────────┘
# This job runs at the end of every successful pipeline.
# It syncs the GitLab pipeline status with GitHub status checks.
Sync GH Checks:
stage: post
script:
- echo "All good"