Welcome to mirror list, hosted at ThFree Co, Russian Federation.

product-build.yml « azure-pipelines « build - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46402a8b7f0efb818df018af4ba3c8926dd22ec8 (plain)
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
pr: none

schedules:
  - cron: "0 5 * * Mon-Fri"
    displayName: Mon-Fri at 7:00
    branches:
      include:
        - main
        - joao/web

trigger:
  branches:
    include: ["main", "release/*"]

parameters:
  - name: VSCODE_DISTRO_REF
    displayName: Distro Ref (Private build)
    type: string
    default: " "
  - name: VSCODE_QUALITY
    displayName: Quality
    type: string
    default: insider
    values:
      - exploration
      - insider
      - stable
  - name: ENABLE_TERRAPIN
    displayName: "Enable Terrapin"
    type: boolean
    default: true
  - name: VSCODE_BUILD_WIN32
    displayName: "🎯 Windows x64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_WIN32_32BIT
    displayName: "🎯 Windows ia32"
    type: boolean
    default: true
  - name: VSCODE_BUILD_WIN32_ARM64
    displayName: "🎯 Windows arm64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_LINUX
    displayName: "🎯 Linux x64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_LINUX_ARM64
    displayName: "🎯 Linux arm64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_LINUX_ARMHF
    displayName: "🎯 Linux armhf"
    type: boolean
    default: true
  - name: VSCODE_BUILD_LINUX_ALPINE
    displayName: "🎯 Alpine Linux x64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_LINUX_ALPINE_ARM64
    displayName: "🎯 Alpine Linux arm64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_MACOS
    displayName: "🎯 macOS x64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_MACOS_ARM64
    displayName: "🎯 macOS arm64"
    type: boolean
    default: true
  - name: VSCODE_BUILD_MACOS_UNIVERSAL
    displayName: "🎯 macOS universal"
    type: boolean
    default: true
  - name: VSCODE_BUILD_WEB
    displayName: "🎯 Web"
    type: boolean
    default: true
  - name: VSCODE_PUBLISH
    displayName: "Publish to builds.code.visualstudio.com"
    type: boolean
    default: true
  - name: VSCODE_PUBLISH_TO_MOONCAKE
    displayName: "Publish to Azure China"
    type: boolean
    default: true
  - name: VSCODE_RELEASE
    displayName: "Release build if successful"
    type: boolean
    default: false
  - name: VSCODE_COMPILE_ONLY
    displayName: "Run Compile stage exclusively"
    type: boolean
    default: false
  - name: VSCODE_STEP_ON_IT
    displayName: "Skip tests"
    type: boolean
    default: false

variables:
  - name: VSCODE_DISTRO_REF
    value: ${{ parameters.VSCODE_DISTRO_REF }}
  - name: ENABLE_TERRAPIN
    value: ${{ eq(parameters.ENABLE_TERRAPIN, true) }}
  - name: VSCODE_QUALITY
    value: ${{ parameters.VSCODE_QUALITY }}
  - name: VSCODE_BUILD_STAGE_WINDOWS
    value: ${{ or(eq(parameters.VSCODE_BUILD_WIN32, true), eq(parameters.VSCODE_BUILD_WIN32_32BIT, true), eq(parameters.VSCODE_BUILD_WIN32_ARM64, true)) }}
  - name: VSCODE_BUILD_STAGE_LINUX
    value: ${{ or(eq(parameters.VSCODE_BUILD_LINUX, true), eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true), eq(parameters.VSCODE_BUILD_LINUX_ALPINE, true), eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true), eq(parameters.VSCODE_BUILD_WEB, true)) }}
  - name: VSCODE_BUILD_STAGE_MACOS
    value: ${{ or(eq(parameters.VSCODE_BUILD_MACOS, true), eq(parameters.VSCODE_BUILD_MACOS_ARM64, true)) }}
  - name: VSCODE_CIBUILD
    value: ${{ in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI') }}
  - name: VSCODE_PUBLISH
    value: ${{ and(eq(parameters.VSCODE_PUBLISH, true), eq(variables.VSCODE_CIBUILD, false)) }}
  - name: VSCODE_PUBLISH_TO_MOONCAKE
    value: ${{ eq(parameters.VSCODE_PUBLISH_TO_MOONCAKE, true) }}
  - name: VSCODE_SCHEDULEDBUILD
    value: ${{ eq(variables['Build.Reason'], 'Schedule') }}
  - name: VSCODE_STEP_ON_IT
    value: ${{ eq(parameters.VSCODE_STEP_ON_IT, true) }}
  - name: VSCODE_BUILD_MACOS_UNIVERSAL
    value: ${{ and(eq(parameters.VSCODE_BUILD_MACOS, true), eq(parameters.VSCODE_BUILD_MACOS_ARM64, true), eq(parameters.VSCODE_BUILD_MACOS_UNIVERSAL, true)) }}
  - name: AZURE_CDN_URL
    value: https://az764295.vo.msecnd.net
  - name: AZURE_DOCUMENTDB_ENDPOINT
    value: https://vscode.documents.azure.com:443/
  - name: MOONCAKE_CDN_URL
    value: https://vscode.cdn.azure.cn
  - name: VSCODE_MIXIN_REPO
    value: microsoft/vscode-distro
  - name: skipComponentGovernanceDetection
    value: true
  - name: Codeql.SkipTaskAutoInjection
    value: true

resources:
  containers:
    - container: vscode-bionic-x64
      image: vscodehub.azurecr.io/vscode-linux-build-agent:bionic-x64
      endpoint: VSCodeHub
      options: --user 0:0 --cap-add SYS_ADMIN
    - container: vscode-arm64
      image: vscodehub.azurecr.io/vscode-linux-build-agent:stretch-arm64
      endpoint: VSCodeHub
      options: --user 0:0 --cap-add SYS_ADMIN
    - container: vscode-armhf
      image: vscodehub.azurecr.io/vscode-linux-build-agent:stretch-armhf
      endpoint: VSCodeHub
      options: --user 0:0 --cap-add SYS_ADMIN
    - container: centos7-devtoolset8-x64
      image: vscodehub.azurecr.io/vscode-linux-build-agent:centos7-devtoolset8-x64
      endpoint: VSCodeHub
      options: --user 0:0 --cap-add SYS_ADMIN
    - container: snapcraft
      image: snapcore/snapcraft:stable

stages:
  - stage: Compile
    jobs:
      - job: Compile
        pool: vscode-1es-linux
        variables:
          VSCODE_ARCH: x64
        steps:
          - template: product-compile.yml
            parameters:
              VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}

  - ${{ if and(eq(parameters.VSCODE_COMPILE_ONLY, false), eq(variables['VSCODE_BUILD_STAGE_WINDOWS'], true)) }}:
      - stage: Windows
        dependsOn:
          - Compile
        pool: vscode-1es-windows
        jobs:
          - ${{ if eq(variables['VSCODE_CIBUILD'], true) }}:
            - job: WindowsUnitTests
              displayName: Unit Tests
              timeoutInMinutes: 60
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: win32/product-build-win32.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: true
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: false
            - job: WindowsIntegrationTests
              displayName: Integration Tests
              timeoutInMinutes: 60
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: win32/product-build-win32.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: true
                    VSCODE_RUN_SMOKE_TESTS: false
            - job: WindowsSmokeTests
              displayName: Smoke Tests
              timeoutInMinutes: 60
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: win32/product-build-win32.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: true

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_WIN32, true)) }}:
              - job: Windows
                timeoutInMinutes: 120
                variables:
                  VSCODE_ARCH: x64
                steps:
                  - template: win32/product-build-win32.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_INTEGRATION_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_SMOKE_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_WIN32_32BIT, true)) }}:
              - job: Windows32
                timeoutInMinutes: 120
                variables:
                  VSCODE_ARCH: ia32
                steps:
                  - template: win32/product-build-win32.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_INTEGRATION_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_SMOKE_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_WIN32_ARM64, true)) }}:
              - job: WindowsARM64
                timeoutInMinutes: 90
                variables:
                  VSCODE_ARCH: arm64
                steps:
                  - template: win32/product-build-win32.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: false
                      VSCODE_RUN_INTEGRATION_TESTS: false
                      VSCODE_RUN_SMOKE_TESTS: false

  - ${{ if and(eq(parameters.VSCODE_COMPILE_ONLY, false), eq(variables['VSCODE_BUILD_STAGE_LINUX'], true)) }}:
      - stage: LinuxServerDependencies
        dependsOn: [] # run in parallel to compile stage
        pool: vscode-1es-linux
        jobs:
          - ${{ if eq(parameters.VSCODE_BUILD_LINUX, true) }}:
              - job: x64
                container: centos7-devtoolset8-x64
                variables:
                  VSCODE_ARCH: x64
                  NPM_ARCH: x64
                steps:
                  - template: linux/product-build-linux-server.yml
                    parameters:
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true)) }}:
              - job: arm64
                variables:
                  VSCODE_ARCH: arm64
                steps:
                  - template: linux/product-build-linux-server.yml
                    parameters:
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}

  - ${{ if and(eq(parameters.VSCODE_COMPILE_ONLY, false), eq(variables['VSCODE_BUILD_STAGE_LINUX'], true)) }}:
      - stage: Linux
        dependsOn:
          - Compile
          - LinuxServerDependencies
        pool: vscode-1es-linux
        jobs:
          - ${{ if eq(variables['VSCODE_CIBUILD'], true) }}:
            - job: Linuxx64UnitTest
              displayName: Unit Tests
              container: vscode-bionic-x64
              variables:
                VSCODE_ARCH: x64
                NPM_ARCH: x64
                DISPLAY: ":10"
              steps:
                - template: linux/product-build-linux-client.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: true
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: false
            - job: Linuxx64IntegrationTest
              displayName: Integration Tests
              container: vscode-bionic-x64
              variables:
                VSCODE_ARCH: x64
                NPM_ARCH: x64
                DISPLAY: ":10"
              steps:
                - template: linux/product-build-linux-client.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: true
                    VSCODE_RUN_SMOKE_TESTS: false
            - job: Linuxx64SmokeTest
              displayName: Smoke Tests
              container: vscode-bionic-x64
              variables:
                VSCODE_ARCH: x64
                NPM_ARCH: x64
                DISPLAY: ":10"
              steps:
                - template: linux/product-build-linux-client.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: true

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX, true)) }}:
              - job: Linuxx64
                container: vscode-bionic-x64
                variables:
                  VSCODE_ARCH: x64
                  NPM_ARCH: x64
                  DISPLAY: ":10"
                steps:
                  - template: linux/product-build-linux-client.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_INTEGRATION_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_SMOKE_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX, true), ne(variables['VSCODE_PUBLISH'], 'false')) }}:
              - job: LinuxSnap
                dependsOn:
                  - Linuxx64
                container: snapcraft
                variables:
                  VSCODE_ARCH: x64
                steps:
                  - template: linux/snap-build-linux.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true)) }}:
              - job: LinuxArmhf
                container: vscode-armhf
                variables:
                  VSCODE_ARCH: armhf
                  NPM_ARCH: armv7l
                steps:
                  - template: linux/product-build-linux-client.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: false
                      VSCODE_RUN_INTEGRATION_TESTS: false
                      VSCODE_RUN_SMOKE_TESTS: false

          # TODO@joaomoreno: We don't ship ARM snaps for now
          - ${{ if and(false, eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true)) }}:
              - job: LinuxSnapArmhf
                dependsOn:
                  - LinuxArmhf
                container: snapcraft
                variables:
                  VSCODE_ARCH: armhf
                steps:
                  - template: linux/snap-build-linux.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true)) }}:
              - job: LinuxArm64
                container: vscode-arm64
                variables:
                  VSCODE_ARCH: arm64
                  NPM_ARCH: arm64
                steps:
                  - template: linux/product-build-linux-client.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: false
                      VSCODE_RUN_INTEGRATION_TESTS: false
                      VSCODE_RUN_SMOKE_TESTS: false

          # TODO@joaomoreno: We don't ship ARM snaps for now
          - ${{ if and(false, eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true)) }}:
              - job: LinuxSnapArm64
                dependsOn:
                  - LinuxArm64
                container: snapcraft
                variables:
                  VSCODE_ARCH: arm64
                steps:
                  - template: linux/snap-build-linux.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ALPINE, true)) }}:
              - job: LinuxAlpine
                variables:
                  VSCODE_ARCH: x64
                steps:
                  - template: linux/product-build-alpine.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true)) }}:
              - job: LinuxAlpineArm64
                timeoutInMinutes: 120
                variables:
                  VSCODE_ARCH: arm64
                steps:
                  - template: linux/product-build-alpine.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_WEB, true)) }}:
              - job: LinuxWeb
                variables:
                  VSCODE_ARCH: x64
                steps:
                  - template: web/product-build-web.yml

  - ${{ if and(eq(parameters.VSCODE_COMPILE_ONLY, false), eq(variables['VSCODE_BUILD_STAGE_MACOS'], true)) }}:
      - stage: macOS
        dependsOn:
          - Compile
        pool:
          vmImage: macOS-latest
        variables:
          BUILDSECMON_OPT_IN: true
        jobs:
          - ${{ if eq(variables['VSCODE_CIBUILD'], true) }}:
            - job: macOSUnitTest
              displayName: Unit Tests
              timeoutInMinutes: 90
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: darwin/product-build-darwin.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: true
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: false
            - job: macOSIntegrationTest
              displayName: Integration Tests
              timeoutInMinutes: 90
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: darwin/product-build-darwin.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: true
                    VSCODE_RUN_SMOKE_TESTS: false
            - job: macOSSmokeTest
              displayName: Smoke Tests
              timeoutInMinutes: 90
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: darwin/product-build-darwin.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: true

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_MACOS, true)) }}:
            - job: macOS
              timeoutInMinutes: 90
              variables:
                VSCODE_ARCH: x64
              steps:
                - template: darwin/product-build-darwin.yml
                  parameters:
                    VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                    VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                    VSCODE_RUN_UNIT_TESTS: false
                    VSCODE_RUN_INTEGRATION_TESTS: false
                    VSCODE_RUN_SMOKE_TESTS: false

            - ${{ if eq(parameters.VSCODE_STEP_ON_IT, false) }}:
              - job: macOSTest
                timeoutInMinutes: 90
                variables:
                  VSCODE_ARCH: x64
                steps:
                  - template: darwin/product-build-darwin.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_INTEGRATION_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}
                      VSCODE_RUN_SMOKE_TESTS: ${{ eq(parameters.VSCODE_STEP_ON_IT, false) }}

            - ${{ if eq(variables['VSCODE_PUBLISH'], true) }}:
              - job: macOSSign
                dependsOn:
                  - macOS
                timeoutInMinutes: 90
                variables:
                  VSCODE_ARCH: x64
                steps:
                  - template: darwin/product-build-darwin-sign.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(parameters.VSCODE_BUILD_MACOS_ARM64, true)) }}:
              - job: macOSARM64
                timeoutInMinutes: 90
                variables:
                  VSCODE_ARCH: arm64
                steps:
                  - template: darwin/product-build-darwin.yml
                    parameters:
                      VSCODE_PUBLISH: ${{ variables.VSCODE_PUBLISH }}
                      VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
                      VSCODE_RUN_UNIT_TESTS: false
                      VSCODE_RUN_INTEGRATION_TESTS: false
                      VSCODE_RUN_SMOKE_TESTS: false

              - ${{ if eq(variables['VSCODE_PUBLISH'], true) }}:
                  - job: macOSARM64Sign
                    dependsOn:
                      - macOSARM64
                    timeoutInMinutes: 90
                    variables:
                      VSCODE_ARCH: arm64
                    steps:
                      - template: darwin/product-build-darwin-sign.yml

          - ${{ if and(eq(variables['VSCODE_CIBUILD'], false), eq(variables['VSCODE_BUILD_MACOS_UNIVERSAL'], true)) }}:
              - job: macOSUniversal
                dependsOn:
                  - macOS
                  - macOSARM64
                timeoutInMinutes: 90
                variables:
                  VSCODE_ARCH: universal
                steps:
                  - template: darwin/product-build-darwin-universal.yml

              - ${{ if eq(variables['VSCODE_PUBLISH'], true) }}:
                  - job: macOSUniversalSign
                    dependsOn:
                      - macOSUniversal
                    timeoutInMinutes: 90
                    variables:
                      VSCODE_ARCH: universal
                    steps:
                      - template: darwin/product-build-darwin-sign.yml

  - ${{ if and(eq(parameters.VSCODE_COMPILE_ONLY, false), ne(variables['VSCODE_PUBLISH'], 'false')) }}:
      - stage: Publish
        dependsOn:
          - Compile
        pool: vscode-1es-linux
        variables:
          - name: BUILDS_API_URL
            value: $(System.CollectionUri)$(System.TeamProject)/_apis/build/builds/$(Build.BuildId)/
        jobs:
          - job: PublishBuild
            timeoutInMinutes: 180
            displayName: Publish Build
            steps:
              - template: product-publish.yml

      - ${{ if or(and(parameters.VSCODE_RELEASE, eq(parameters.VSCODE_DISTRO_REF, ' ')), and(in(parameters.VSCODE_QUALITY, 'insider', 'exploration'), eq(variables['VSCODE_SCHEDULEDBUILD'], true))) }}:
          - stage: Release
            dependsOn:
              - Publish
            pool: vscode-1es-linux
            jobs:
              - job: ReleaseBuild
                displayName: Release Build
                steps:
                  - template: product-release.yml