-
Notifications
You must be signed in to change notification settings - Fork 272
/
.gitlab-ci.yml
434 lines (398 loc) · 8.84 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
include:
- project: 'translations/generator'
ref: master
file: '/jobs/commit-locales.gitlab-ci.yml'
- project: 'translations/generator'
ref: master
file: '/jobs/sync-crowdin.gitlab-ci.yml'
- project: 'ProtonVPN/qa/test-configuration'
ref: master
file: '/windows-config.yml'
- local: '/.gitlab-ci-templates.yml'
- component: $CI_SERVER_HOST/proton/devops/cicd-components/tools/artifactlift/[email protected]
inputs:
product: vpn
platform: windows
artifact_list: "*"
artifact_local_directory: Setup/Installers
- component: $CI_SERVER_HOST/proton/devops/cicd-components/tools/artifactlift/[email protected]
inputs:
product: vpn
platform: windows
artifact_list: ""
artifact_metadata_path: ""
artifact_metadata_list: ""
variables:
PUBLIC_REPO_URL: [email protected]:ProtonVPN/win-app.git
TEST_ARTIFACT_PATH: src/bin/TestArtifactData/
TEST_REPORT_PATH: results/
PROJECT_ID: "13"
MILESTONE: "Windows"
FF_USE_FASTZIP: "true"
TRANSFER_METER_FREQUENCY: "2s"
ARTIFACT_COMPRESSION_LEVEL: "fastest"
CACHE_COMPRESSION_LEVEL: "fastest"
stages:
- release
- bot # comes from translations/generator job
- build
- test
- build-installer
- internal-beta
- publish-to-slack
- test-setup
- ui-test
- generate
- deploy
- test-upload
- installation-test
- test-cleanup
- mirror
build-release-x64:
extends: .build-script
only:
- master
- /^release.*$/
variables:
TYPE: Release
DEPENDENCIES: publish
PLATFORM: x64
BUILD_PATH: src/bin/win-x64/publish
build-release-arm64:
extends: .build-script
only:
- master
- /^release.*$/
tags:
- windows-arm64
variables:
TYPE: Release
DEPENDENCIES: publish
PLATFORM: arm64
BUILD_PATH: src/bin/win-arm64/publish
build-bti-x64:
rules:
- if: '$CI_COMMIT_BRANCH == "master"'
when: never
- if: '$CI_COMMIT_BRANCH =~ /^release.*$/'
when: never
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: $BTI_SCHEDULED == "true"
when: always
- when: manual
extends:
- .build-bti-vars
- .build-script
when: manual
variables:
TYPE: Debug
PLATFORM: x64
DEPENDENCIES: publish-BTI
BUILD_PATH: src/bin/win-x64/BTI/publish
build-debug-x64:
extends: .build-script
except:
- master
- /^release.*$/
- schedules
variables:
TYPE: Debug
PLATFORM: x64
DEPENDENCIES: publish
BUILD_PATH: src/bin/win-x64/publish
build-debug-arm64:
extends: .build-script
when: manual
except:
- master
- /^release.*$/
- schedules
tags:
- windows-arm64
variables:
TYPE: Debug
PLATFORM: arm64
DEPENDENCIES: publish
BUILD_PATH: src/bin/win-arm64/publish
full-ui-tests-arm:
tags:
- windows-arm64-ui
extends: .test_execution_script
needs:
- job: build-installer-debug-arm64
optional: true
- job: build-installer-release-arm64
optional: true
except:
- /^debug.*$/
- release/9.9.9
- master
- schedules
variables:
CATEGORY: "ARM"
ui-test:
extends: .test_execution_script
except:
- /^debug.*$/
- release/9.9.9
- master
- schedules
variables:
CATEGORY: "UI"
connection-test:
extends: .test_execution_script
except:
- /^debug.*$/
- release/9.9.9
- master
- schedules
variables:
CATEGORY: "Connection"
bti-test:
extends: .test_execution_script
needs:
- build-BTI-installer-x64
rules:
- if: '$CI_COMMIT_BRANCH == "master"'
when: never
- if: '$CI_COMMIT_BRANCH =~ /^release.*$/'
when: never
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: $BTI_SCHEDULED == "true"
when: always
- when: manual
tags:
- BTI
dependencies:
- build-BTI-installer-x64
variables:
CATEGORY: "BTI"
after_script:
- ci\test-scripts\alert-failure.ps1
tests-x64-debug:
tags:
- windows-dot-net
extends:
- .tests
except:
- master
- /^release.*$/
- schedules
needs:
- build-debug-x64
variables:
PLATFORM: x64
tests-x64-release:
tags:
- windows-dot-net
extends:
- .tests
only:
- master
- /^release.*$/
needs:
- build-release-x64
variables:
PLATFORM: x64
tests-arm64-debug:
tags:
- windows-arm64
extends:
- .tests
except:
- master
- /^release.*$/
- schedules
needs:
- build-debug-arm64
variables:
PLATFORM: arm64
tests-arm64-release:
tags:
- windows-arm64
extends:
- .tests
only:
- master
- /^release.*$/
needs:
- build-release-arm64
variables:
PLATFORM: arm64
build-installer-release-x64:
needs:
- build-release-x64
extends:
- .build-installer
only:
- master
- /^release.*$/
variables:
BUILD_PATH: src/bin/win-x64/publish
PLATFORM: x64
build-installer-debug-x64:
needs:
- build-debug-x64
extends:
- .build-installer
except:
- master
- /^release.*$/
- schedules
variables:
BUILD_PATH: src/bin/win-x64/publish
PLATFORM: x64
build-installer-debug-arm64:
needs:
- build-debug-arm64
extends:
- .build-installer
except:
- master
- /^release.*$/
- schedules
variables:
BUILD_PATH: src/bin/win-arm64/publish
PLATFORM: arm64
build-installer-release-arm64:
needs:
- build-release-arm64
extends:
- .build-installer
only:
- master
- /^release.*$/
variables:
BUILD_PATH: src/bin/win-arm64/publish
PLATFORM: arm64
build-BTI-installer-x64:
needs:
- build-bti-x64
except:
- master
- /^release.*$/
extends:
- .build-installer
variables:
BUILD_PATH: src/bin/win-x64/BTI/publish
PLATFORM: x64
prepare-internal-beta-release:
stage: internal-beta
tags:
- windows-dot-net
when: manual
script:
- python -m pip install -r ci\python-libs.txt
- python ci\test-scripts\prepare-internal-beta.py
only:
- /^release.*$/
mirror:
stage: mirror
tags:
- windows-dot-net
only:
refs:
- tags
- master
script:
- python ci\build-scripts\main.py prepare-ssh $env:SSH_PRIVATE_KEY
- ssh-keyscan -t rsa github.com | Set-Content "$env:userprofile\.ssh\known_hosts"
- git clone "$CI_REPOSITORY_URL" --branch master _APP_CLONE;
- cd _APP_CLONE
- git remote add public $PUBLIC_REPO_URL
- git push public master
- git push public "$(git describe --abbrev=0)"
i18n-sync-crowdin:
when: manual
variables:
I18N_SYNC_CROWDIN_PROJECT: 'windows-vpn'
extends: .i18n-sync-crowdin-common
i18n-manual-sync-crowdin:
when: manual
only:
- branches
variables:
I18N_SYNC_CROWDIN_PROJECT: 'windows-vpn'
extends: .i18n-sync-crowdin-common
i18n-commit-translations:
extends: .i18n-commit-locales-shared
variables:
I18N_COMMIT_CROWDIN_PROJECT: 'windows-vpn'
before_script:
- git config --global core.autocrlf false
create-release:
image: harbor.protontech.ch/docker.io/library/python:latest
tags:
- shared-small
stage: release
when: manual
only:
refs:
- develop
- develop-v2
script:
- apt-get update && apt-get install -y python3 python3-pip git
- python3 ci/build-scripts/release.py
send-slack-notification:
tags:
- windows-dot-net
only:
refs:
- develop
except:
- schedules
stage: publish-to-slack
script:
- python -m pip install -r ci\python-libs.txt
- python ci\build-scripts\main.py send-slack-notification
generate-release-artifacts:
stage: generate
image: harbor.protontech.ch/docker.io/library/alpine:3.20
needs:
- build-installer-release-x64
- build-installer-release-arm64
tags:
- shared-small
script:
- set -ex
- export RELEASE_VERSION="${CI_COMMIT_BRANCH##release/}" && echo "RELEASE_VERSION=${RELEASE_VERSION}" | tee release.env
- echo "ARTIFACT_LIST=ProtonVPN_v${RELEASE_VERSION}_x64.exe ProtonVPN_v${RELEASE_VERSION}_arm64.exe" | tee -a release.env
artifacts:
reports:
dotenv: release.env
only:
- /^release.*$/
artifactlift-release-candidate-artifacts:
rules:
- when: never
artifactlift-release-artifacts:
rules:
- when: never
release-binary-to-nexus:
needs:
- generate-release-artifacts
- job: build-installer-release-x64
artifacts: true
- job: build-installer-release-arm64
artifacts: true
extends: artifactlift-release-candidate-artifacts
rules:
- if: '$CI_COMMIT_BRANCH == "release/9.9.9"'
when: never
- if: '$CI_COMMIT_BRANCH =~ /^release\/\d+\.\d+\.\d+/'
when: manual
- when: never
release-binary-to-prod:
extends: artifactlift-release-artifacts
needs:
- job: generate-release-artifacts
artifacts: true
- release-binary-to-nexus
rules:
- if: '$CI_COMMIT_BRANCH == "release/9.9.9"'
when: never
- if: '$CI_COMMIT_BRANCH =~ /^release\/\d+\.\d+\.\d+/'
when: manual
- when: never