forked from dotnet/coreclr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netci.groovy
973 lines (903 loc) · 53.6 KB
/
netci.groovy
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
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
// Import the utility functionality.
import jobs.generation.Utilities;
def project = GithubProject
def static getOSGroup(def os) {
def osGroupMap = ['Ubuntu':'Linux',
'RHEL7.2': 'Linux',
'Ubuntu15.10': 'Linux',
'Debian8.2':'Linux',
'OSX':'OSX',
'Windows_NT':'Windows_NT',
'FreeBSD':'FreeBSD',
'CentOS7.1': 'Linux',
'OpenSUSE13.2': 'Linux']
def osGroup = osGroupMap.get(os, null)
assert osGroup != null : "Could not find os group for ${os}"
return osGroupMap[os]
}
def static getFullBranchName(def branch) {
def branchMap = ['master':'*/master',
'rc2':'*/release/1.0.0-rc2',
'pr':'*/master']
def fullBranchName = branchMap.get(branch, null)
assert fullBranchName != null : "Could not find a full branch name for ${branch}"
return branchMap[branch]
}
// We use this class (vs variables) so that the static functions can access data here.
class Constants {
// Innerloop build OS's
// The Windows_NT_BuildOnly OS is a way to speed up the Non-NT builds temporarily by avoiding
// test execution in the build flow runs. It generates the exact same build
// as Windows_NT but without the tests.
def static osList = ['Ubuntu', 'Debian8.2', 'OSX', 'Windows_NT', 'Windows_NT_BuildOnly', 'FreeBSD', 'CentOS7.1', 'OpenSUSE13.2', 'Ubuntu15.10', 'RHEL7.2']
def static crossList = ['Ubuntu', 'OSX']
// This is a set of JIT stress modes combined with the set of variables that
// need to be set to actually enable that stress mode. The key of the map is the stress mode and
// the values are the environment variables
def static jitStressModeScenarios = ['minopts' : ['COMPlus_JitMinOpts' : '1'], 'forcerelocs' : ['COMPlus_ForceRelocs' : '1'],
'jitstress1' : ['COMPlus_JitStress' : '1'], 'jitstress2' : ['COMPlus_JitStress' : '2'],
'jitstressregs1' : ['COMPlus_JitStressRegs' : '1'], 'jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
'jitstressregs3' : ['COMPlus_JitStressRegs' : '3'], 'jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
'jitstressregs8' : ['COMPlus_JitStressRegs' : '8'], 'jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
'jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
'fx' : ['' : ''], // corefx baseline
'fxjs1' : ['COMPlus_JitStress' : '1'],
'fxjs2' : ['COMPlus_JitStress' : '2']]
// This is the basic set of scenarios
def static basicScenarios = ['default', 'pri1', 'ilrt']
// This is the set of configurations
def static configurationList = ['Debug', 'Checked', 'Release']
// This is the set of architectures
def static architectureList = ['arm', 'arm64', 'x64', 'x86']
// This is the set of branches
def static branchList = ['master', 'rc2', 'pr']
}
def static setMachineAffinity(def job, def os, def architecture) {
if (architecture == 'arm64' && os == 'Windows_NT') {
// For cross compilation
job.with {
label('arm64')
}
} else {
return Utilities.setMachineAffinity(job, os, 'latest-or-auto');
}
}
def static isCorefxTesting(def scenario) {
return scenario.substring(0,2) == 'fx'
}
// Generates the string for creating a file that sets environment variables
// that makes it possible to run stress modes. Writes the script to a file called
// SetStressModes.[sh/cmd]
def static genStressModeScriptStep(def os, def stressModeName, def stressModeVars, def stepScriptLocation) {
def stepScript = ''
if (os == 'Windows_NT') {
stepScript += "echo Creating TestEnv Script for ${stressModeName}\r\n"
stepScript += "del ${stepScriptLocation}\r\n"
stressModeVars.each{ k, v ->
// Write out what we are writing to the script file
stepScript += "echo Setting ${k}=${v}\r\n"
// Write out the set itself to the script file`
stepScript += "echo set ${k}=${v} >> ${stepScriptLocation}\r\n"
}
}
else {
// For these we don't use a script, we use directly
stepScript += "echo Setting variables for ${stressModeName}\n"
stressModeVars.each{ k, v ->
// Write out what we are writing to the script file
stepScript += "echo Setting ${k}=${v}\n"
// Write out the set itself to the script file`
stepScript += "${k}=${v}\n"
}
}
return stepScript
}
// Calculates the name of the build job based on some typical parameters.
//
def static getJobName(def configuration, def architecture, def os, def scenario, def isBuildOnly, def branchName) {
// If the architecture is x64, do not add that info into the build name.
// Need to change around some systems and other builds to pick up the right builds
// to do that.
def suffix = scenario != 'default' ? "_${scenario}" : '';
if (isBuildOnly) {
suffix += '_bld'
}
if (branchName == 'rc2'){
suffix += '_rc2'
}
def baseName = ''
switch (architecture) {
case 'x64':
if (scenario == 'default') {
// For now we leave x64 off of the name for compatibility with other jobs
baseName = configuration.toLowerCase() + '_' + os.toLowerCase()
}
else {
baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
}
break
case 'arm64':
case 'arm':
// These are cross builds
baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
break
case 'x86':
baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
return baseName + suffix
}
// **************************
// Define the basic inner loop builds for PR and commit. This is basically just the set
// of coreclr builds over linux/osx/freebsd/windows and debug/release/checked. In addition, the windows
// builds will do a couple extra steps.
// **************************
// Adds a trigger for the PR build if one is needed. If isFlowJob is true, then this is the
// flow job that rolls up the build and test for non-windows OS's
def static addTriggers(def job, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob) {
// Non pull request builds.
if (!isPR) {
// Check scenario.
switch (scenario) {
case 'default':
switch (architecture)
{
case 'x64':
case 'x86':
if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
// default gets a push trigger for everything, except for x64 Release -
// we use Pri 1 for that situation
if (architecture != 'x64' && configuration != 'Release') {
Utilities.addGithubPushTrigger(job)
}
}
break
case 'arm':
case 'arm64':
Utilities.addGithubPushTrigger(job)
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
break
case 'pri1':
// Pri one gets a push trigger, and only for release
if (architecture == 'x64' && configuration == 'Release') {
// We don't expect to see a job generated except in these scenarios
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (isFlowJob || os == 'Windows_NT') {
Utilities.addGithubPushTrigger(job)
}
}
break
case 'ilrt':
// ILASM/ILDASM roundtrip one gets a daily build, and only for release
if (architecture == 'x64' && configuration == 'Release') {
// We don't expect to see a job generated except in these scenarios
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (isFlowJob || os == 'Windows_NT') {
Utilities.addPeriodicTrigger(job, '@daily')
}
}
break
case 'jitstressregs1':
case 'jitstressregs2':
case 'jitstressregs3':
case 'jitstressregs4':
case 'jitstressregs8':
case 'jitstressregs0x10':
case 'jitstressregs0x80':
case 'minopts':
case 'forcerelocs':
case 'jitstress1':
case 'jitstress2':
case 'fx':
case 'fxjs1':
case 'fxjs2':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addPeriodicTrigger(job, '@daily')
break
default:
println("Unknown scenario: ${scenario}");
assert false
break
}
return
}
// Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers
// We generally only have a distinct set of default triggers but a bunch of on-demand ones.
def osGroup = getOSGroup(os)
switch (architecture) {
case 'x64':
switch (os) {
case 'OpenSUSE13.2':
assert !isFlowJob
assert scenario == 'default'
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+suse.*')
break
case 'Debian8.2':
assert !isFlowJob
assert scenario == 'default'
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+debian.*')
break
case 'Ubuntu15.10':
assert !isFlowJob
assert scenario == 'default'
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+Ubuntu15\\.10.*')
break
case 'RHEL7.2':
assert !isFlowJob
assert scenario == 'default'
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+RHEL7\\.2.*')
break
case 'Ubuntu':
case 'OSX':
// Triggers on the non-flow jobs aren't necessary here
if (!isFlowJob) {
break
}
switch (scenario) {
case 'default':
// Ubuntu uses checked for default PR tests
if (configuration == 'Checked') {
// Default trigger
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test")
}
break
case 'pri1':
if (configuration == 'Release') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Priority 1 Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'ilrt':
if (configuration == 'Release') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'minopts':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - MinOpts)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstress1':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStress=1)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstress2':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStress=2)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'forcerelocs':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - ForceRelocs)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
case 'jitstressregs1':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=1)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs2':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=2)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs3':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=3)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs4':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=4)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs8':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=8)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs0x10':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=0x10)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs0x80':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=0x80)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'fx':
case 'fxjs1':
case 'fxjs2':
// No Linux support is needed now
break
default:
println("Unknown scenario: ${scenario}");
assert false
break
}
break
case 'CentOS7.1':
case 'OpenSUSE13.2':
assert !isFlowJob
assert scenario == 'default'
if (configuration == 'Checked') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build")
}
break
case 'Windows_NT':
switch (scenario) {
case 'default':
// Default trigger
if (configuration != 'Checked') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test")
}
break
case 'pri1':
if (configuration == 'Release') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Priority 1 Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'ilrt':
if (configuration == 'Release') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'minopts':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - MinOpts)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'forcerelocs':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - ForceRelocs)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstress1':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStress=1)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstress2':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStress=2)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs1':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=1)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs2':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=2)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs3':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=3)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs4':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=4)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs8':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=8)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs0x10':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=0x10)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'jitstressregs0x80':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - JitStressRegs=0x80)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'fx':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - CoreFx Baseline)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'fxjs1':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - CoreFx JitStress=1)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'fxjs2':
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build and Test (Jit - CoreFx JitStress=2)",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
default:
println("Unknown scenario: ${scenario}");
assert false
break
}
break
case 'FreeBSD':
assert scenario == 'default'
if (configuration == 'Checked') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build")
}
break
default:
println("Unknown os: ${os}");
assert false
break
}
break
case 'arm64':
case 'arm':
assert scenario == 'default'
switch (os) {
case 'Ubuntu':
Utilities.addGithubPRTrigger(job, "${os} ${architecture} Cross ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}.*")
break
case 'Windows_NT':
// Set up a private trigger
Utilities.addPrivateGithubPRTrigger(job, "${os} ${architecture} Cross ${configuration} Build",
"(?i).*test\\W+${os}\\W+${architecture}.*", null, ['jashook', 'RussKeldorph', 'gkhanna79', 'briansul', 'cmckinsey', 'jkotas', 'ramarag', 'markwilkie', 'rahku', 'tzwlai', 'weshaggard', 'LLITCHEV'])
break
}
break
case 'x86':
assert scenario == 'default'
// For windows, x86 runs by default
if (os == 'Windows_NT') {
if (configuration != 'Checked') {
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build")
}
}
else {
// default trigger
Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${architecture}\\W+${osGroup}.*")
}
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
}
// Additional scenario which can alter behavior
def combinedScenarios = Constants.basicScenarios + Constants.jitStressModeScenarios.keySet()
combinedScenarios.each { scenario ->
Constants.branchList.each { branchName ->
Constants.architectureList.each { architecture ->
Constants.configurationList.each { configuration ->
Constants.osList.each { os ->
// If the OS is Windows_NT_BuildOnly, set the isBuildOnly flag to true
// and reset the os to Windows_NT
def isBuildOnly = false
if (os == 'Windows_NT_BuildOnly') {
isBuildOnly = true
os = 'Windows_NT'
}
def isPR = (branchName == 'pr');
// Skip totally unimplemented (in CI) configurations.
switch (architecture) {
case 'arm64':
// Windows or cross compiled Ubuntu
if (os != 'Windows_NT' && os != 'Ubuntu') {
return
}
break
case 'arm':
// Only Ubuntu cross implemented
if (os != 'Ubuntu') {
return
}
break
case 'x86':
// Skip non-windows
if (os != 'Windows_NT') {
return
}
break
case 'x64':
// Everything implemented
break
default:
println("Unknown architecture: ${architecture}")
assert false
break
}
// Skip scenarios (blanket skipping for jit stress modes, which are good most everywhere
// with checked builds
def enableCorefxTesting = false
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
if (configuration != 'Checked') {
return
}
// Since these are just execution time differences,
// skip platforms that don't execute the tests here (Windows_NT only)
if (os != 'Windows_NT' || isBuildOnly) {
return
}
// No stress modes except on x64 right now (mainly because of bad test state on x86)
if (architecture != 'x64') {
return
}
enableCorefxTesting = isCorefxTesting(scenario)
// Only enable non-PR testing once PR testing works well.
if (enableCorefxTesting && !isPR) {
return
}
}
else {
// Skip scenarios
switch (scenario) {
case 'pri1':
// The pri1 build isn't necessary except for os's in the cross list or Windows_NT (native OS runs)
if (os != 'Windows_NT' && !(os in Constants.crossList)) {
return
}
// Only x64 for now
if (architecture != 'x64') {
return
}
break
case 'ilrt':
// The ilrt build isn't necessary except for os's in the cross list or Windows_NT (native OS runs)
if (os != 'Windows_NT' && !(os in Constants.crossList)) {
return
}
// Only x64 for now
if (architecture != 'x64') {
return
}
break
case 'default':
// Nothing skipped
break
default:
println("Unknown scenario: ${scenario}")
assert false
break
}
}
// Calculate names
def lowerConfiguration = configuration.toLowerCase()
def jobName = getJobName(configuration, architecture, os, scenario, isBuildOnly, branchName)
// Create the new job
def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) {}
setMachineAffinity(newJob, os, architecture)
// Add all the standard options
Utilities.standardJobSetup(newJob, project, isPR, getFullBranchName(branchName))
addTriggers(newJob, isPR, architecture, os, configuration, scenario, false)
def buildCommands = [];
def osGroup = getOSGroup(os)
// Calculate the build steps, archival, and xunit results
switch (os) {
case 'Windows_NT':
switch (architecture) {
case 'x64':
case 'x86':
if (scenario == 'default' || Constants.jitStressModeScenarios.containsKey(scenario)) {
buildOpts = enableCorefxTesting ? 'skiptests' : ''
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} ${buildOpts}"
}
// For Pri 1 tests, we must shorten the output test binary path names.
// if __TestIntermediateDir is already set, buildtest.cmd will
// output test binaries to that directory. If it is not set, the
// binaries are sent to a default directory whose name is about
// 35 characters long.
else if (scenario == 'pri1') {
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} Priority 1"
}
else if (scenario == 'ilrt') {
// First do the build with skiptestbuild and then build the tests with ilasm roundtrip
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} skiptestbuild"
buildCommands += "tests\\buildtest.cmd ${lowerConfiguration} ${architecture} ilasmroundtrip"
}
else {
println("Unknown scenario: ${scenario}")
assert false
}
// If we are running a stress mode, we should write out the set of key
// value env pairs to a file at this point and then we'll pass that to runtest.cmd
if (!isBuildOnly) {
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
if (enableCorefxTesting) {
// Sync to corefx repo
// Move coreclr files to a subdirectory, %workspace%/clr. Otherwise, corefx build
// thinks that %workspace% is the project base directory.
buildCommands += "powershell new-item clr -type directory -force"
buildCommands += 'powershell foreach ($x in get-childitem -force) { if (\$x.name -ne \'clr\') { move-item $x clr }}'
buildCommands += "git clone https://github.com/dotnet/corefx fx"
def setEnvVar = ''
def envVars = Constants.jitStressModeScenarios[scenario]
envVars.each{ VarName, Value ->
if (VarName != '') {
setEnvVar += "&& set ${VarName}=${Value} "
}
}
// Run corefx build and testing
buildCommands += "cd fx && call \"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x86 ${setEnvVar} && Build.cmd /p:ConfigurationGroup=Release /p:BUILDTOOLS_OVERRIDE_RUNTIME=%WORKSPACE%\\clr\\bin\\Product\\Windows_NT.x64.Checked "
}
else {
def stepScriptLocation = "%WORKSPACE%\\bin\\tests\\SetStressModes.bat"
buildCommands += genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], stepScriptLocation)
// Run tests with the
buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} TestEnv ${stepScriptLocation}"
}
}
else if (architecture == 'x64' || !isPR) {
buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture}"
}
}
if (!enableCorefxTesting) {
// Run the rest of the build
// Build the mscorlib for the other OS's
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} linuxmscorlib"
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} freebsdmscorlib"
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} osxmscorlib"
// Zip up the tests directory so that we don't use so much space/time copying
// 10s of thousands of files around.
buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${architecture}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
// For windows, pull full test results and test drops for x86/x64
Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip")
if (!isBuildOnly) {
if (architecture == 'x64' || !isPR) {
Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml')
}
}
}
else {
// Archive only result xml files since corefx/bin/tests is very large around 10 GB.
// For windows, pull full test results and test drops for x86/x64
Utilities.addArchival(newJob, "fx/bin/tests/**/testResults.xml")
// Set timeout to 240
Utilities.setJobTimeout(newJob, 240)
if (architecture == 'x64' || !isPR) {
Utilities.addXUnitDotNETResults(newJob, 'fx/bin/tests/**/testResults.xml')
}
}
break
case 'arm64':
assert scenario == 'default'
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} skiptestbuild /toolset_dir C:\\ats"
// Add archival. No xunit results for x64 windows
Utilities.addArchival(newJob, "bin/Product/**")
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
break
case 'Ubuntu':
case 'Ubuntu15.10':
case 'Debian8.2':
case 'OSX':
case 'FreeBSD':
case 'CentOS7.1':
case 'RHEL7.2':
case 'OpenSUSE13.2':
switch (architecture) {
case 'x64':
case 'x86':
// On other OS's we skipmscorlib but run the pal tests
if ((architecture == 'x64') && ((os == 'Ubuntu') || (os == 'OSX')))
{
buildCommands += "./build.sh verbose ${lowerConfiguration} ${architecture}"
}
else
{
buildCommands += "./build.sh skipmscorlib verbose ${lowerConfiguration} ${architecture}"
}
buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout"
// Basic archiving of the build
Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**")
// And pal tests
Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
break
case 'arm64':
// We don't run the cross build except on Ubuntu
assert os == 'Ubuntu'
buildCommands += """echo \"Using rootfs in /opt/aarch64-linux-gnu-root\"
ROOTFS_DIR=/opt/aarch64-linux-gnu-root ./build.sh skipmscorlib arm64 cross verbose ${lowerConfiguration}"""
// Basic archiving of the build, no pal tests
Utilities.addArchival(newJob, "bin/Product/**")
break
case 'arm':
// We don't run the cross build except on Ubuntu
assert os == 'Ubuntu'
buildCommands += """echo \"Using rootfs in /opt/arm-liux-genueabihf-root\"
ROOTFS_DIR=/opt/arm-linux-genueabihf-root ./build.sh skipmscorlib arm cross verbose ${lowerConfiguration}"""
// Basic archiving of the build, no pal tests
Utilities.addArchival(newJob, "bin/Product/**")
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
break
default:
println("Unknown os: ${os}");
assert false
break
}
newJob.with {
steps {
if (os == 'Windows_NT') {
buildCommands.each { buildCommand ->
batchFile(buildCommand)
}
}
else {
buildCommands.each { buildCommand ->
shell(buildCommand)
}
}
}
}
} // os
} // configuration
} // architecture
} // isPR
} // scenario
// Create the Linux/OSX coreclr test leg for debug and release and each scenario
combinedScenarios.each { scenario ->
Constants.branchList.each { branchName ->
// Architectures. x64 only at this point
['x64'].each { architecture ->
// Put the OS's supported for coreclr cross testing here
Constants.crossList.each { os ->
Constants.configurationList.each { configuration ->
def isPR = (branchName == 'pr');
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
if (configuration != 'Checked') {
return
}
if (isCorefxTesting(scenario)) {
return
}
}
else {
// Skip scenarios
switch (scenario) {
case 'pri1':
// Nothing skipped
break
case 'ilrt':
// Nothing skipped
break
case 'default':
// Nothing skipped
break
default:
println("Unknown scenario: ${scenario}")
assert false
break
}
}
def lowerConfiguration = configuration.toLowerCase()
def osGroup = getOSGroup(os)
def jobName = getJobName(configuration, architecture, os, scenario, false, branchName) + "_tst"
def inputCoreCLRBuildName = Utilities.getFolderName(project) + '/' +
Utilities.getFullJobName(project, getJobName(configuration, architecture, os, 'default', false, branchName), isPR)
// If this is a stress scenario, there isn't any difference in the build job
// so we didn't create a build only job for windows_nt specific to that stress mode. Just copy
// from the default scenario
def inputWindowTestsBuildName = ''
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
inputWindowTestsBuildName = Utilities.getFolderName(project) + '/' +
Utilities.getFullJobName(project, getJobName(configuration, architecture, 'windows_nt', 'default', true, branchName), isPR)
}
else {
inputWindowTestsBuildName = Utilities.getFolderName(project) + '/' +
Utilities.getFullJobName(project, getJobName(configuration, architecture, 'windows_nt', scenario, true, branchName), isPR)
}
// Enable Server GC for Ubuntu PR builds
def serverGCString = ''
if (os == 'Ubuntu' && isPR){
serverGCString = '--useServerGC'
}
def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) {
// Add parameters for the inputs
parameters {
stringParam('CORECLR_WINDOWS_BUILD', '', 'Build number to copy CoreCLR windows test binaries from')
stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
}
steps {
// Set up the copies
// Coreclr build we are trying to test
copyArtifacts(inputCoreCLRBuildName) {
excludePatterns('**/testResults.xml', '**/*.ni.dll')
buildSelector {
buildNumber('${CORECLR_BUILD}')
}
}
// Coreclr build containing the tests and mscorlib
copyArtifacts(inputWindowTestsBuildName) {
excludePatterns('**/testResults.xml', '**/*.ni.dll')
buildSelector {
buildNumber('${CORECLR_WINDOWS_BUILD}')
}
}
// Corefx native components
def corefxNativeCompBinaries =
copyArtifacts("dotnet_corefx/nativecomp_${os.toLowerCase()}_release") {
includePatterns('bin/**')
buildSelector {
latestSuccessful(true)
}
}
// CoreFX Linux binaries
copyArtifacts("dotnet_corefx/${os.toLowerCase()}_release_bld") {
includePatterns('bin/build.pack')
buildSelector {
latestSuccessful(true)
}
}
// Unpack the corefx binaries
shell("unpacker ./bin/build.pack ./bin")
// Unzip the tests first. Exit with 0
shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.${architecture}.${configuration} || exit 0")
// Execute the tests
// If we are running a stress mode, we'll set those variables first
def stressModeString = ""
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
stressModeString = genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], null)
}
shell("""${stressModeString}
./tests/runtest.sh \\
--testRootDir=\"\${WORKSPACE}/bin/tests/Windows_NT.${architecture}.${configuration}\" \\
--testNativeBinDir=\"\${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
--coreClrBinDir=\"\${WORKSPACE}/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
--mscorlibDir=\"\${WORKSPACE}/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
--coreFxBinDir=\"\${WORKSPACE}/bin/${osGroup}.AnyCPU.Release\" \\
--coreFxNativeBinDir=\"\${WORKSPACE}/bin/${osGroup}.${architecture}.Release\" \\
${serverGCString}""")
}
}
setMachineAffinity(newJob, os, architecture)
Utilities.standardJobSetup(newJob, project, isPR, getFullBranchName(branchName))
// Set timeouts to 240.
Utilities.setJobTimeout(newJob, 240)
Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml')
// Create a build flow to join together the build and tests required to run this
// test.
// Windows CoreCLR build and Linux CoreCLR build (in parallel) ->
// Linux CoreCLR test
def flowJobName = getJobName(configuration, architecture, os, scenario, false, branchName) + "_flow"
def fullTestJobName = Utilities.getFolderName(project) + '/' + newJob.name
def newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR)) {
buildFlow("""
// Build the input jobs in parallel
parallel (
{ coreclrBuildJob = build(params, '${inputCoreCLRBuildName}') },
{ windowsBuildJob = build(params, '${inputWindowTestsBuildName}') }
)
// And then build the test build
build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}')
""")
// Needs a workspace
configure {
def buildNeedsWorkspace = it / 'buildNeedsWorkspace'
buildNeedsWorkspace.setValue('true')
}
}
Utilities.standardJobSetup(newFlowJob, project, isPR, getFullBranchName(branchName))
addTriggers(newFlowJob, isPR, architecture, os, configuration, scenario, true)
} // configuration
} // os
} // architecture
} // isPR
} // scenario