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

pipeline.json « buildpipeline - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5125aa24446e133e1a0f63d0dc81cd08959ea39c (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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
{
  "Repository": "corefx",
  "Definitions": {
    "Path": ".",
    "Type": "VSTS",
    "BaseUrl": "https://devdiv.visualstudio.com/DefaultCollection"
  },
  "Pipelines": [
    {
      "Name": "Trusted-All-Release-Linux",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Release"
      },
      "Definitions": [{
          "Name": "DotNet-CoreFx-Trusted-Linux",
          "Parameters": {
            "PB_DockerTag": "centos-7-d485f41-20173404063424",
            "PB_BuildArguments": "-buildArch=x64 -Release -stripSymbols",
            "PB_BuildTestsArguments": "-buildArch=x64 -Release -SkipTests -Outerloop -- /p:ArchiveTests=true /p:EnableDumpling=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Centos.73.Amd64+RedHat.72.Amd64+RedHat.73.Amd64+Debian.87.Amd64+Debian.90.Amd64+Ubuntu.1404.Amd64+Ubuntu.1604.Amd64+Ubuntu.1704.Amd64+Ubuntu.1710.Amd64+suse.422.amd64+SLES.12.Amd64+fedora.25.amd64+Fedora.26.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Linux"
          },
          "ReportingParameters": {
            "OperatingSystem": "Linux",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Release"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Linux",
          "Parameters": {
            "PB_DockerTag": "centos-6-376e1a3-20174311014331",
            "PB_BuildArguments": "-buildArch=x64 -Release -stripSymbols -RuntimeOS=rhel.6 -- /p:PortableBuild=false",
            "PB_BuildTestsArguments": "-buildArch=x64 -Release -SkipTests -Outerloop -RuntimeOS=rhel.6 -- /p:ArchiveTests=true /p:EnableDumpling=true /p:PortableBuild=false",
            "PB_SyncArguments": "-p -RuntimeOS=rhel.6 -- /p:ArchGroup=x64 /p:PortableBuild=false /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "RedHat.69.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Linux"
          },
          "ReportingParameters": {
            "OperatingSystem": "RedHat6",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Release"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Linux",
          "Parameters": {
            "PB_DockerTag": "alpine-3.6-3148f11-20171119021156",
            "PB_BuildArguments": "-buildArch=x64 -Release -BuildTests=false -stripSymbols -RuntimeOS=alpine.3.6 -- /p:PortableBuild=false",
            "PB_DisableTestBuild" : "true",
            "PB_BuildTestsArguments": "-buildArch=x64 -Release -SkipTests -Outerloop -RuntimeOS=alpine.3.6 -- /p:ArchiveTests=false /p:EnableDumpling=true /p:PortableBuild=false",
            "PB_SyncArguments": "-p -BuildTests=false -RuntimeOS=alpine.3.6 -- /p:ArchGroup=x64 /p:PortableBuild=false /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Alpine.36.Amd64",
            "PB_EnableCloudTest" : "false",
            "PB_CreateHelixArguments": "/p:EnableCloudTest=$(PB_EnableCloudTest) /p:ArchGroup=x64 /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Linux"
          },
          "ReportingParameters": {
            "OperatingSystem": "Alpine3.6",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Release"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Linux-Crossbuild",
          "Parameters": {
            "PB_DockerTag": "ubuntu-14.04-cross-0cd4667-20170319080304",
            "PB_Architecture": "arm",
            "PB_BuildArguments": "-buildArch=arm -Release -stripSymbols",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:OverridePackageSource=$(PB_AzureFeedUrl)"
          },
          "ReportingParameters": {
            "OperatingSystem": "Linux",
            "Platform": "arm",
            "Type": "build/product/",
            "ConfigurationGroup": "Release"
          }
        }
      ]
    },
    {
      "Name": "Trusted-All-Release-OSX",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_BuildArguments": "-buildArch=x64 -Release -stripSymbols",
        "PB_BuildTestsArguments": "-buildArch=x64 -Release -SkipTests -Outerloop -- /p:ArchiveTests=true",
        "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
        "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Release /p:EnableCloudTest=false /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=OSX"
      },
      "Definitions": [{
          "Name": "DotNet-CoreFx-Trusted-OSX",
          "Parameters": {
            "PB_BuildArguments": "-buildArch=x64 -Release",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "OSX.1012.Amd64+OSX.1013.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=OSX"
          },
          "ReportingParameters": {
            "OperatingSystem": "OSX",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Release"
          }
        }
      ]
    },
    {
      "Name": "Trusted-All-Release-Windows",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Release",
        "PB_PipelineBuildMSBuildArguments": "/p:EnableProfileGuidedOptimization=true"
      },
      "Definitions": [
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "arm",
            "PB_BuildArguments": "-buildArch=arm -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-buildArch=arm -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_CreateHelixArguments": "/p:ArchGroup=arm /p:ConfigurationGroup=Release /p:EnableCloudTest=false /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT"
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "arm",
            "ConfigurationGroup": "Release",
            "SubType": "netcoreapp"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "arm64",
            "PB_BuildArguments": "-buildArch=arm64 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-buildArch=arm64 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm64 /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_CreateHelixArguments": "/p:ArchGroup=arm64 /p:ConfigurationGroup=Release /p:EnableCloudTest=false /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT"
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "arm64",
            "ConfigurationGroup": "Release",
            "SubType": "netcoreapp"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-buildArch=x64 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-buildArch=x64 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64+Windows.10.Nano.Amd64+Windows.10.Amd64.Core+Windows.7.Amd64+Windows.81.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT"
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Release",
            "SubType": "netcoreapp"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-buildArch=x86 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-buildArch=x86 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64+Windows.10.Amd64.Core+Windows.7.Amd64+Windows.81.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x86 /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT"
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Release",
            "SubType": "netcoreapp"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "arm",
            "PB_BuildArguments": "-framework=uap -buildArch=arm -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=uap -buildArch=arm -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:RuntimeOS=win10 /p:TargetGroup=uap /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Arm64",
            "PB_CreateHelixArguments": "/p:ArchGroup=arm /p:TargetGroup=uap /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/uwp/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "arm",
            "ConfigurationGroup": "Release",
            "SubType": "uap"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-framework=uap -buildArch=x64 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=uap -buildArch=x64 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:TargetGroup=uap /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:TargetGroup=uap /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/uwp/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Release",
            "SubType": "uap"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-framework=uap -buildArch=x86 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=uap -buildArch=x86 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:TargetGroup=uap /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x86 /p:TargetGroup=uap /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/uwp/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Release",
            "SubType": "uap"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "arm",
            "PB_BuildArguments": "-framework=uapaot -buildArch=arm -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_BuildTestsArguments": "-framework=uapaot -buildArch=arm -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:RuntimeOS=win10 /p:TargetGroup=uapaot /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=arm /p:TargetGroup=uapaot /p:ConfigurationGroup=Release /p:SecondaryQueue=Windows.10.Arm64 /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/ilc/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "arm",
            "ConfigurationGroup": "Release",
            "SubType": "uapaot"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-framework=uapaot -buildArch=x64 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_BuildTestsArguments": "-framework=uapaot -buildArch=x64 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:TargetGroup=uapaot /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:TargetGroup=uapaot /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/ilc/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Release",
            "SubType": "uapaot"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-framework=uapaot -buildArch=x86 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_BuildTestsArguments": "-framework=uapaot -buildArch=x86 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x86 /p:TargetGroup=uapaot /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/ilc/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Release",
            "SubType": "uapaot"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows-NoTest",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-allConfigurations -buildArch=x64 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:BuildAllConfigurations=true /p:OverridePackageSource=$(PB_AzureFeedUrl)"
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Release",
            "SubType": "AllConfigurations"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-framework=netfx -buildArch=x64 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=netfx -buildArch=x64 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:TargetGroup=netfx /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64",
            "PB_CreateHelixArguments": "/p:EnableCloudTest=false /p:ArchGroup=x64 /p:TargetGroup=netfx /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/desktop/cli/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Release",
            "SubType": "netfx"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-framework=netfx -buildArch=x86 -Release -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=netfx -buildArch=x86 -Release -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:TargetGroup=netfx /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64",
            "PB_CreateHelixArguments": "/p:EnableCloudTest=false /p:ArchGroup=x86 /p:TargetGroup=netfx /p:ConfigurationGroup=Release /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/desktop/cli/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Release",
            "SubType": "netfx"
          }
        }
      ]
    },
    {
      "Name": "Trusted-All-Debug-Linux",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Debug"
      },
      "Definitions": [{
          "Name": "DotNet-CoreFx-Trusted-Linux",
          "Parameters": {
            "PB_DockerTag": "centos-7-34f1db9-20171620021620",
            "PB_BuildArguments": "-buildArch=x64 -Debug",
            "PB_BuildTestsArguments": "-buildArch=x64 -Debug -SkipTests -Outerloop -- /p:ArchiveTests=true /p:EnableDumpling=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Centos.73.Amd64+RedHat.72.Amd64+RedHat.73.Amd64+Debian.87.Amd64+Debian.90.Amd64+Ubuntu.1404.Amd64+Ubuntu.1604.Amd64+Ubuntu.1704.Amd64+Ubuntu.1710.Amd64+suse.422.amd64+SLES.12.Amd64+fedora.25.amd64+Fedora.26.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Linux"
          },
          "ReportingParameters": {
            "OperatingSystem": "Linux",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Debug"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Linux",
          "Parameters": {
            "PB_DockerTag": "centos-6-c8c9b08-20174310104313",
            "PB_BuildArguments": "-buildArch=x64 -Debug -RuntimeOS=rhel.6 -- /p:PortableBuild=false",
            "PB_BuildTestsArguments": "-buildArch=x64 -Debug -SkipTests -Outerloop -RuntimeOS=rhel.6 -- /p:ArchiveTests=true /p:EnableDumpling=true /p:PortableBuild=false",
            "PB_SyncArguments": "-p -RuntimeOS=rhel.6 -- /p:ArchGroup=x64 /p:PortableBuild=false /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "RedHat.69.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Linux"
          },
          "ReportingParameters": {
            "OperatingSystem": "RedHat6",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Debug"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Linux",
          "Parameters": {
            "PB_DockerTag": "alpine-3.6-3148f11-20171119021156",
            "PB_BuildArguments": "-buildArch=x64 -Debug -BuildTests=false -RuntimeOS=alpine.3.6 -- /p:PortableBuild=false",
            "PB_DisableTestBuild" : "true",
            "PB_BuildTestsArguments": "-buildArch=x64 -Debug -SkipTests -Outerloop -RuntimeOS=alpine.3.6 -- /p:ArchiveTests=false /p:EnableDumpling=true /p:PortableBuild=false",
            "PB_SyncArguments": "-p -BuildTests=false -RuntimeOS=alpine.3.6 -- /p:ArchGroup=x64 /p:PortableBuild=false /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Alpine.36.Amd64",
            "PB_EnableCloudTest" : "false",
            "PB_CreateHelixArguments": "/p:EnableCloudTest=$(PB_EnableCloudTest) /p:ArchGroup=x64 /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Linux"
          },
          "ReportingParameters": {
            "OperatingSystem": "Alpine3.6",
            "Platform": "x64",
            "Type": "build/product/",
            "ConfigurationGroup": "Debug"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Linux-Crossbuild",
          "Parameters": {
            "PB_DockerTag": "ubuntu-14.04-cross-0cd4667-20170319080304",
            "PB_Architecture": "arm",
            "PB_BuildArguments": "-buildArch=arm -Debug",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:OverridePackageSource=$(PB_AzureFeedUrl)"
          },
          "ReportingParameters": {
            "OperatingSystem": "Linux",
            "Platform": "arm",
            "Type": "build/product/",
            "ConfigurationGroup": "Debug"
          }
        }
      ]
    },
    {
      "Name": "Trusted-All-Debug-OSX",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_BuildArguments": "-buildArch=x64 -Debug",
        "PB_BuildTestsArguments": "-buildArch=x64 -Debug -SkipTests -Outerloop -- /p:ArchiveTests=true",
        "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
        "PB_CreateHelixArguments": "/p:EnableCloudTest=false /p:ArchGroup=x64 /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:\"TargetOS=OSX\""
      },
      "Definitions": [{
        "Name": "DotNet-CoreFx-Trusted-OSX",
        "Parameters": {
          "PB_TargetQueue": "OSX.1012.Amd64+OSX.1013.Amd64"
        },
        "ReportingParameters": {
          "OperatingSystem": "OSX",
          "Platform": "x64",
          "Type": "build/product/",
          "ConfigurationGroup": "Debug"
        }
      }]
    },
    {
      "Name": "Trusted-All-Debug-Windows",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Debug"
      },
      "Definitions": [
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "arm",
            "PB_BuildArguments": "-framework=uap -buildArch=arm -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=uap -buildArch=arm -Debug -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:RuntimeOS=win10 /p:TargetGroup=uap /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Arm64",
            "PB_CreateHelixArguments": "/p:ArchGroup=arm /p:TargetGroup=uap /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/uwp/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "arm",
            "ConfigurationGroup": "Debug",
            "SubType": "uap"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-framework=uap -buildArch=x64 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=uap -buildArch=x64 -Debug -SkipTests -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:TargetGroup=uap /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:TargetGroup=uap /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/uwp/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Debug",
            "SubType": "uap"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-framework=uap -buildArch=x86 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=uap -buildArch=x86 -Debug -SkipTests -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:TargetGroup=uap /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x86 /p:TargetGroup=uap /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/uwp/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Debug",
            "SubType": "uap"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "arm",
            "PB_BuildArguments": "-framework=uapaot -buildArch=arm -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_BuildTestsArguments": "-framework=uapaot -buildArch=arm -Debug -SkipTests -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=arm /p:RuntimeOS=win10 /p:TargetGroup=uapaot /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=arm /p:TargetGroup=uapaot /p:ConfigurationGroup=Debug /p:SecondaryQueue=Windows.10.Arm64 /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/ilc/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "arm",
            "ConfigurationGroup": "Debug",
            "SubType": "uapaot"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-framework:uapaot -buildArch=x64 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_BuildTestsArguments": "-framework=uapaot -buildArch=x64 -Debug -SkipTests -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:TargetGroup=uapaot /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:TargetGroup=uapaot /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/ilc/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Debug",
            "SubType": "uapaot"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-framework:uapaot -buildArch=x86 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_BuildTestsArguments": "-framework=uapaot -buildArch=x86 -Debug -SkipTests -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64.ClientRS3",
            "PB_CreateHelixArguments": "/p:ArchGroup=x86 /p:TargetGroup=uapaot /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/ilc/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Debug",
            "SubType": "uapaot"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows-NoTest",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-allConfigurations -buildArch=x64 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:BuildAllConfigurations=true /p:OverridePackageSource=$(PB_AzureFeedUrl)"
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Debug",
            "SubType": "AllConfigurations"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x64",
            "PB_BuildArguments": "-framework=netfx -buildArch=x64 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=netfx -buildArch=x64 -Debug -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x64 /p:RuntimeOS=win10 /p:TargetGroup=netfx /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x64 /p:TargetGroup=netfx /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/desktop/cli/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x64",
            "ConfigurationGroup": "Debug",
            "SubType": "netfx"
          }
        },
        {
          "Name": "DotNet-CoreFx-Trusted-Windows",
          "Parameters": {
            "PB_Platform": "x86",
            "PB_BuildArguments": "-framework=netfx -buildArch=x86 -Debug -- /p:SignType=$(PB_SignType) /p:RuntimeOS=win10",
            "PB_BuildTestsArguments": "-framework=netfx -buildArch=x86 -Debug -SkipTests -Outerloop -- /p:RuntimeOS=win10 /p:ArchiveTests=true",
            "PB_SyncArguments": "-p -- /p:ArchGroup=x86 /p:RuntimeOS=win10 /p:TargetGroup=netfx /p:OverridePackageSource=$(PB_AzureFeedUrl)",
            "PB_TargetQueue": "Windows.10.Amd64",
            "PB_CreateHelixArguments": "/p:ArchGroup=x86 /p:TargetGroup=netfx /p:ConfigurationGroup=Debug /p:TestProduct=corefx /p:TimeoutInSeconds=1200 /p:TargetOS=Windows_NT /p:\"HelixJobType=test/functional/desktop/cli/\""
          },
          "ReportingParameters": {
            "OperatingSystem": "Windows",
            "Type": "build/product/",
            "Platform": "x86",
            "ConfigurationGroup": "Debug",
            "SubType": "netfx"
          }
        }
      ]
    },
    {
      "Name": "Publish Packages to Feeds - Release",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Release"
      },
      "Definitions": [{
        "Name": "DotNet-Trusted-Publish",
        "Parameters": {
          "PB_VsoRepositoryName": "DotNet-CoreFX-Trusted",
          "PB_Repo": "corefx"
        },
        "ReportingParameters": {
          "TaskName": "Package Publish",
          "Type": "build/publish/",
          "ConfigurationGroup": "Release - Push to MyGet Feed"
        }
      }],
      "DependsOn": [
        "Trusted-All-Release-Windows",
        "Trusted-All-Release-OSX",
        "Trusted-All-Release-Linux"
      ]
    },
    {
      "Name": "Publish Packages to Drop - Debug",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Debug"
      },
      "Definitions": [{
        "Name": "DotNet-Trusted-Publish",
        "Parameters": {
          "PB_VsoRepositoryName": "DotNet-CoreFX-Trusted",
          "PB_Repo": "corefx"
        },
        "ReportingParameters": {
          "TaskName": "Package Publish",
          "Type": "build/publish/",
          "ConfigurationGroup": "Debug - Push to Azure Storage"
        }
      }],
      "DependsOn": [
        "Trusted-All-Debug-Windows",
        "Trusted-All-Debug-OSX",
        "Trusted-All-Debug-Linux"
      ]
    },
    {
      "Name": "Publish Symbols - Release",
      "Parameters": {
        "TreatWarningsAsErrors": "false"
      },
      "BuildParameters": {
        "PB_ConfigurationGroup": "Release"
      },
      "Definitions": [{
        "Name": "DotNet-Trusted-Publish-Symbols",
        "Parameters": {
          "PB_VsoRepositoryName": "DotNet-CoreFX-Trusted"
        },
        "ReportingParameters": {
          "TaskName": "Symbol Publish",
          "Type": "build/publish/",
          "ConfigurationGroup": "Release - Publish Symbols"
        }
      }],
      "DependsOn": [
        "Trusted-All-Release-Windows",
        "Trusted-All-Release-OSX",
        "Trusted-All-Release-Linux"
      ]
    }
  ]
}