1 // Import the utility functionality.
3 import jobs.generation.*
5 // The input project name (e.g. dotnet/coreclr)
6 def project = GithubProject
7 // The input branch name (e.g. master)
8 def branch = GithubBranchName
9 def projectFolder = Utilities.getFolderName(project) + '/' + Utilities.getFolderName(branch)
11 // Create a folder for JIT stress jobs and associated folder views
13 Utilities.addStandardFolderView(this, 'jitstress', project)
15 // Create a folder for testing via illink
17 Utilities.addStandardFolderView(this, 'illink', project)
19 def static getOSGroup(def os) {
20 def osGroupMap = ['Ubuntu' : 'Linux',
21 'Ubuntu16.04' : 'Linux',
22 'Ubuntu16.10' : 'Linux',
24 'Debian8.4' : 'Linux',
26 'CentOS7.1' : 'Linux',
29 'Windows_NT' : 'Windows_NT']
30 def osGroup = osGroupMap.get(os, null)
31 assert osGroup != null : "Could not find os group for ${os}"
35 // We use this class (vs variables) so that the static functions can access data here.
38 // We have very limited Windows ARM64 hardware (used for ARM/ARM64 testing) and Linux/arm32 and Linux/arm64 hardware.
39 // So only allow certain branches to use it.
40 def static LimitedHardwareBranches = [
43 // Innerloop build OS's
44 // The Windows_NT_BuildOnly OS is a way to speed up the Non-Windows builds by avoiding
45 // test execution in the build flow runs. It generates the exact same build
46 // as Windows_NT but without running the tests.
52 'Windows_NT_BuildOnly',
60 def static crossList = [
68 // This is a set of JIT stress modes combined with the set of variables that
69 // need to be set to actually enable that stress mode. The key of the map is the stress mode and
70 // the values are the environment variables
71 def static jitStressModeScenarios = [
72 'minopts' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JITMinOpts' : '1'],
73 'tieredcompilation' : ['COMPlus_TieredCompilation' : '1'], // this can be removed once tiered compilation is on by default
74 'no_tiered_compilation' : ['COMPlus_TieredCompilation' : '0'],
75 'no_tiered_compilation_innerloop': ['COMPlus_TieredCompilation' : '0'],
76 'forcerelocs' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_ForceRelocs' : '1'],
77 'jitstress1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '1'],
78 'jitstress2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2'],
79 'jitstress1_tiered' : ['COMPlus_TieredCompilation' : '1', 'COMPlus_JitStress' : '1'],
80 'jitstress2_tiered' : ['COMPlus_TieredCompilation' : '1', 'COMPlus_JitStress' : '2'],
81 'jitstressregs1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '1'],
82 'jitstressregs2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '2'],
83 'jitstressregs3' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '3'],
84 'jitstressregs4' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '4'],
85 'jitstressregs8' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '8'],
86 'jitstressregs0x10' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '0x10'],
87 'jitstressregs0x80' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '0x80'],
88 'jitstressregs0x1000' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '0x1000'],
89 'jitstress2_jitstressregs1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '1'],
90 'jitstress2_jitstressregs2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '2'],
91 'jitstress2_jitstressregs3' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '3'],
92 'jitstress2_jitstressregs4' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '4'],
93 'jitstress2_jitstressregs8' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '8'],
94 'jitstress2_jitstressregs0x10' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x10'],
95 'jitstress2_jitstressregs0x80' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x80'],
96 'jitstress2_jitstressregs0x1000' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x1000'],
97 'tailcallstress' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_TailcallStress' : '1'],
98 'jitsse2only' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_EnableAVX' : '0', 'COMPlus_EnableSSE3_4' : '0'],
99 'jitnosimd' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_FeatureSIMD' : '0'],
100 'jitincompletehwintrinsic' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_EnableIncompleteISAClass' : '1'],
101 'jitx86hwintrinsicnoavx' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_EnableAVX' : '0'], // testing the legacy SSE encoding
102 'jitx86hwintrinsicnoavx2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_EnableAVX2' : '0'], // testing SNB/IVB
103 'jitx86hwintrinsicnosimd' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_FeatureSIMD' : '0'], // match "jitnosimd", may need to remove after decoupling HW intrinsic from FeatureSIMD
104 'jitnox86hwintrinsic' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_EnableSSE' : '0' , 'COMPlus_EnableSSE2' : '0' , 'COMPlus_EnableSSE3' : '0' , 'COMPlus_EnableSSSE3' : '0' , 'COMPlus_EnableSSE41' : '0' , 'COMPlus_EnableSSE42' : '0' , 'COMPlus_EnableAVX' : '0' , 'COMPlus_EnableAVX2' : '0' , 'COMPlus_EnableAES' : '0' , 'COMPlus_EnableBMI1' : '0' , 'COMPlus_EnableBMI2' : '0' , 'COMPlus_EnableFMA' : '0' , 'COMPlus_EnableLZCNT' : '0' , 'COMPlus_EnablePCLMULQDQ' : '0' , 'COMPlus_EnablePOPCNT' : '0'],
105 'corefx_baseline' : ['COMPlus_TieredCompilation' : '0'], // corefx baseline
106 'corefx_minopts' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JITMinOpts' : '1'],
107 'corefx_tieredcompilation' : ['COMPlus_TieredCompilation' : '1'], // this can be removed once tiered compilation is on by default
108 'corefx_jitstress1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '1'],
109 'corefx_jitstress2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStress' : '2'],
110 'corefx_jitstressregs1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '1'],
111 'corefx_jitstressregs2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '2'],
112 'corefx_jitstressregs3' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '3'],
113 'corefx_jitstressregs4' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '4'],
114 'corefx_jitstressregs8' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '8'],
115 'corefx_jitstressregs0x10' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '0x10'],
116 'corefx_jitstressregs0x80' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '0x80'],
117 'corefx_jitstressregs0x1000' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_JitStressRegs' : '0x1000'],
118 'gcstress0x3' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0x3'],
119 'gcstress0xc' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC'],
120 'zapdisable' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
121 'heapverify1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_HeapVerify' : '1'],
122 'gcstress0xc_zapdisable' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
123 'gcstress0xc_zapdisable_jitstress2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_JitStress' : '2'],
124 'gcstress0xc_zapdisable_heapverify1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_HeapVerify' : '1'],
125 'gcstress0xc_jitstress1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '1'],
126 'gcstress0xc_jitstress2' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '2'],
127 'gcstress0xc_minopts_heapverify1' : ['COMPlus_TieredCompilation' : '0', 'COMPlus_GCStress' : '0xC', 'COMPlus_JITMinOpts' : '1', 'COMPlus_HeapVerify' : '1']
130 // This is a set of ReadyToRun stress scenarios
131 def static r2rStressScenarios = [
132 'r2r_jitstress1' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStress": "1"],
133 'r2r_jitstress2' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStress": "2"],
134 'r2r_jitstress1_tiered' : ['COMPlus_TieredCompilation' : '1', "COMPlus_JitStress": "1"],
135 'r2r_jitstress2_tiered' : ['COMPlus_TieredCompilation' : '1', "COMPlus_JitStress": "2"],
136 'r2r_jitstressregs1' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "1"],
137 'r2r_jitstressregs2' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "2"],
138 'r2r_jitstressregs3' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "3"],
139 'r2r_jitstressregs4' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "4"],
140 'r2r_jitstressregs8' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "8"],
141 'r2r_jitstressregs0x10' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "0x10"],
142 'r2r_jitstressregs0x80' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "0x80"],
143 'r2r_jitstressregs0x1000' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JitStressRegs": "0x1000"],
144 'r2r_jitminopts' : ['COMPlus_TieredCompilation' : '0', "COMPlus_JITMinOpts": "1"],
145 'r2r_jitforcerelocs' : ['COMPlus_TieredCompilation' : '0', "COMPlus_ForceRelocs": "1"],
146 'r2r_gcstress15' : ['COMPlus_TieredCompilation' : '0', "COMPlus_GCStress": "0xF"],
147 'r2r_no_tiered_compilation' : ['COMPlus_TieredCompilation' : '0'],
150 // This is the basic set of scenarios
151 def static basicScenarios = [
159 // 'jitdiff', // jitdiff is currently disabled, until someone spends the effort to make it fully work
161 'gc_reliability_framework',
164 'crossgen_comparison',
167 def static allScenarios = basicScenarios + r2rStressScenarios.keySet() + jitStressModeScenarios.keySet()
169 // Valid PR trigger combinations.
170 def static prTriggeredValidInnerLoopCombos = [
188 'Windows_NT_BuildOnly': [
227 // A set of scenarios that are valid for arm/arm64 tests run on hardware. This is a map from valid scenario name
228 // to Tests.lst file categories to exclude.
230 // This list should contain a subset of the scenarios from `allScenarios`. Please keep this in the same order as that,
231 // and with the same values, with some commented out, for easier maintenance.
233 // Note that some scenarios that are commented out should be enabled, but haven't yet been.
235 def static validArmWindowsScenarios = [
245 // 'gc_reliability_framework'
247 // 'corefx_innerloop'
248 // 'crossgen_comparison'
252 'r2r_jitstress1_tiered',
253 'r2r_jitstress2_tiered',
254 'r2r_jitstressregs1',
255 'r2r_jitstressregs2',
256 'r2r_jitstressregs3',
257 'r2r_jitstressregs4',
258 'r2r_jitstressregs8',
259 'r2r_jitstressregs0x10',
260 'r2r_jitstressregs0x80',
261 'r2r_jitstressregs0x1000',
263 'r2r_jitforcerelocs',
265 'r2r_no_tiered_compilation',
268 'no_tiered_compilation',
269 'no_tiered_compilation_innerloop',
282 'jitstressregs0x1000',
283 'jitstress2_jitstressregs1',
284 'jitstress2_jitstressregs2',
285 'jitstress2_jitstressregs3',
286 'jitstress2_jitstressregs4',
287 'jitstress2_jitstressregs8',
288 'jitstress2_jitstressregs0x10',
289 'jitstress2_jitstressregs0x80',
290 'jitstress2_jitstressregs0x1000',
292 // 'jitsse2only' // Only relevant to xarch
293 'jitnosimd', // Only interesting on platforms where SIMD support exists.
294 // 'jitincompletehwintrinsic'
295 // 'jitx86hwintrinsicnoavx'
296 // 'jitx86hwintrinsicnoavx2'
297 // 'jitx86hwintrinsicnosimd'
298 // 'jitnox86hwintrinsic'
299 'corefx_baseline', // corefx tests don't use smarty
300 'corefx_minopts', // corefx tests don't use smarty
301 'corefx_tieredcompilation', // corefx tests don't use smarty
302 'corefx_jitstress1', // corefx tests don't use smarty
303 'corefx_jitstress2', // corefx tests don't use smarty
304 'corefx_jitstressregs1', // corefx tests don't use smarty
305 'corefx_jitstressregs2', // corefx tests don't use smarty
306 'corefx_jitstressregs3', // corefx tests don't use smarty
307 'corefx_jitstressregs4', // corefx tests don't use smarty
308 'corefx_jitstressregs8', // corefx tests don't use smarty
309 'corefx_jitstressregs0x10', // corefx tests don't use smarty
310 'corefx_jitstressregs0x80', // corefx tests don't use smarty
311 'corefx_jitstressregs0x1000', // corefx tests don't use smarty
316 'gcstress0xc_zapdisable',
317 'gcstress0xc_zapdisable_jitstress2',
318 'gcstress0xc_zapdisable_heapverify1',
319 'gcstress0xc_jitstress1',
320 'gcstress0xc_jitstress2',
321 'gcstress0xc_minopts_heapverify1',
324 // NOTE: the following scenarios are not defined in the 'allScenarios' list! Is this a bug?
327 'minopts_zapdisable',
328 'gcstress0x3_jitstress1',
329 'gcstress0x3_jitstress2',
330 'gcstress0x3_jitstressregs1',
331 'gcstress0x3_jitstressregs2',
332 'gcstress0x3_jitstressregs3',
333 'gcstress0x3_jitstressregs4',
334 'gcstress0x3_jitstressregs8',
335 'gcstress0x3_jitstressregs0x10',
336 'gcstress0x3_jitstressregs0x80',
337 'gcstress0x3_jitstressregs0x1000',
338 'gcstress0xc_jitstressregs1',
339 'gcstress0xc_jitstressregs2',
340 'gcstress0xc_jitstressregs3',
341 'gcstress0xc_jitstressregs4',
342 'gcstress0xc_jitstressregs8',
343 'gcstress0xc_jitstressregs0x10',
344 'gcstress0xc_jitstressregs0x80',
345 'gcstress0xc_jitstressregs0x1000'
348 def static validLinuxArmScenarios = [
358 // 'gc_reliability_framework'
360 // 'corefx_innerloop'
361 'crossgen_comparison',
365 'r2r_jitstress1_tiered',
366 'r2r_jitstress2_tiered',
367 'r2r_jitstressregs1',
368 'r2r_jitstressregs2',
369 'r2r_jitstressregs3',
370 'r2r_jitstressregs4',
371 'r2r_jitstressregs8',
372 'r2r_jitstressregs0x10',
373 'r2r_jitstressregs0x80',
374 'r2r_jitstressregs0x1000',
376 'r2r_jitforcerelocs',
378 'r2r_no_tiered_compilation',
381 'no_tiered_compilation',
382 'no_tiered_compilation_innerloop',
395 'jitstressregs0x1000',
396 'jitstress2_jitstressregs1',
397 'jitstress2_jitstressregs2',
398 'jitstress2_jitstressregs3',
399 'jitstress2_jitstressregs4',
400 'jitstress2_jitstressregs8',
401 'jitstress2_jitstressregs0x10',
402 'jitstress2_jitstressregs0x80',
403 'jitstress2_jitstressregs0x1000',
405 // 'jitsse2only' // Only relevant to xarch
406 // 'jitnosimd' // Only interesting on platforms where SIMD support exists.
407 // 'jitincompletehwintrinsic'
408 // 'jitx86hwintrinsicnoavx'
409 // 'jitx86hwintrinsicnoavx2'
410 // 'jitx86hwintrinsicnosimd'
411 // 'jitnox86hwintrinsic'
414 'corefx_tieredcompilation',
417 'corefx_jitstressregs1',
418 'corefx_jitstressregs2',
419 'corefx_jitstressregs3',
420 'corefx_jitstressregs4',
421 'corefx_jitstressregs8',
422 'corefx_jitstressregs0x10',
423 'corefx_jitstressregs0x80',
424 'corefx_jitstressregs0x1000',
429 'gcstress0xc_zapdisable',
430 'gcstress0xc_zapdisable_jitstress2',
431 'gcstress0xc_zapdisable_heapverify1',
432 'gcstress0xc_jitstress1',
433 'gcstress0xc_jitstress2',
434 'gcstress0xc_minopts_heapverify1'
437 def static validLinuxArm64Scenarios = [
447 // 'gc_reliability_framework'
449 // 'corefx_innerloop'
450 'crossgen_comparison',
454 'r2r_jitstress1_tiered',
455 'r2r_jitstress2_tiered',
456 'r2r_jitstressregs1',
457 'r2r_jitstressregs2',
458 'r2r_jitstressregs3',
459 'r2r_jitstressregs4',
460 'r2r_jitstressregs8',
461 'r2r_jitstressregs0x10',
462 'r2r_jitstressregs0x80',
463 'r2r_jitstressregs0x1000',
465 'r2r_jitforcerelocs',
467 'r2r_no_tiered_compilation',
470 'no_tiered_compilation',
471 'no_tiered_compilation_innerloop',
484 'jitstressregs0x1000',
485 'jitstress2_jitstressregs1',
486 'jitstress2_jitstressregs2',
487 'jitstress2_jitstressregs3',
488 'jitstress2_jitstressregs4',
489 'jitstress2_jitstressregs8',
490 'jitstress2_jitstressregs0x10',
491 'jitstress2_jitstressregs0x80',
492 'jitstress2_jitstressregs0x1000',
494 // 'jitsse2only' // Only relevant to xarch
495 'jitnosimd', // Only interesting on platforms where SIMD support exists.
496 // 'jitincompletehwintrinsic'
497 // 'jitx86hwintrinsicnoavx'
498 // 'jitx86hwintrinsicnoavx2'
499 // 'jitx86hwintrinsicnosimd'
500 // 'jitnox86hwintrinsic'
503 'corefx_tieredcompilation',
506 'corefx_jitstressregs1',
507 'corefx_jitstressregs2',
508 'corefx_jitstressregs3',
509 'corefx_jitstressregs4',
510 'corefx_jitstressregs8',
511 'corefx_jitstressregs0x10',
512 'corefx_jitstressregs0x80',
513 'corefx_jitstressregs0x1000',
518 'gcstress0xc_zapdisable',
519 'gcstress0xc_zapdisable_jitstress2',
520 'gcstress0xc_zapdisable_heapverify1',
521 'gcstress0xc_jitstress1',
522 'gcstress0xc_jitstress2',
523 'gcstress0xc_minopts_heapverify1'
526 def static configurationList = ['Debug', 'Checked', 'Release']
528 // This is the set of architectures
529 // Some of these are pseudo-architectures:
530 // armem -- ARM builds/runs using an emulator. Used for Tizen runs.
531 def static architectureList = ['arm', 'armem', 'arm64', 'x64', 'x86']
533 // This set of architectures that cross build on Windows and run on Windows ARM64 hardware.
534 def static armWindowsCrossArchitectureList = ['arm', 'arm64']
537 // **************************************************************
538 // Create some specific views
540 // These aren't using the Utilities.addStandardFolderView() function, because that creates
541 // views based on a single regular expression. These views will be generated by adding a
542 // specific set of jobs to them.
544 // Utilities.addStandardFolderView() also creates a lot of additional stuff around the
545 // view, like "Build Statistics", "Job Statistics", "Unstable Jobs". Until it is determined
546 // those are required, don't add them (which simplifies the view pages, as well).
547 // **************************************************************
550 def static MergeJobView = null
551 def static PeriodicJobView = null
552 def static ArchitectureViews = [:]
553 def static OSViews = [:]
556 // MergeJobView: include all jobs that execute when a PR change is merged.
557 Views.MergeJobView = listView('Merge') {
570 // PeriodicJobView: include all jobs that execute on a schedule
571 Views.PeriodicJobView = listView('Periodic') {
584 // Create a view for non-PR jobs for each architecture.
585 Constants.architectureList.each { architecture ->
586 Views.ArchitectureViews[architecture] = listView(architecture) {
600 // Create a view for non-PR jobs for each OS.
601 Constants.osList.each { os ->
602 // Don't create one for the special 'Windows_NT_BuildOnly'
603 if (os == 'Windows_NT_BuildOnly') {
606 Views.OSViews[os] = listView(os) {
620 def static addToMergeView(def job) {
621 Views.MergeJobView.with {
628 def static addToPeriodicView(def job) {
629 Views.PeriodicJobView.with {
636 def static addToViews(def job, def isFlowJob, def isPR, def architecture, def os, def configuration, def scenario) {
638 // No views want PR jobs currently.
642 // We don't want to include in view any job that is only used by a flow job (because we want the views to have only the
643 // "top-level" jobs. Build only jobs are such jobs.
644 if (os == 'Windows_NT_BuildOnly') {
649 // For non-flow jobs, which ones are only used by flow jobs?
650 if ((architecture == 'arm') || (architecture == 'arm64')) {
651 if (isCoreFxScenario(scenario)) {
652 // We have corefx-specific scenario builds for each of the runs, but these are driven by flow jobs.
656 // We're left with the basic normal/innerloop builds. We might want to remove these from the views also, if desired.
657 // However, there are a few, like the Debug Build, that is build only, not "Build and Test", that we should leave.
661 // Add to architecture view.
662 Views.ArchitectureViews[architecture].with {
669 Views.OSViews[os].with {
676 def static addPeriodicTriggerHelper(def job, String cronString, boolean alwaysRuns = false) {
677 addToPeriodicView(job)
678 Utilities.addPeriodicTrigger(job, cronString, alwaysRuns)
681 def static addGithubPushTriggerHelper(def job) {
683 Utilities.addGithubPushTrigger(job)
687 def static setMachineAffinity(def job, def os, def architecture, def options = null) {
688 assert os instanceof String
689 assert architecture instanceof String
691 def armArches = ['arm', 'armem', 'arm64']
693 if (!(architecture in armArches)) {
694 assert options == null
695 Utilities.setMachineAffinity(job, os, 'latest-or-auto')
700 // This is an arm(64) job.
702 // There are several options.
706 // Arm32 (Build) -> latest-arm64
707 // |-> os == "Windows_NT" && (architecture == "arm") && options['use_arm64_build_machine'] == true
708 // Arm32 (Test) -> arm64-windows_nt
709 // |-> os == "Windows_NT" && (architecture == "arm") && options['use_arm64_build_machine'] == false
711 // Arm64 (Build) -> latest-arm64
712 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == true
713 // Arm64 (Test) -> arm64-windows_nt
714 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == false
718 // Arm32 emulator (Build, Test) -> arm-cross-latest
719 // |-> os == "Tizen" && (architecture == "armem")
721 // Arm32 hardware (Flow) -> Ubuntu 16.04 latest-or-auto (don't use limited arm hardware)
722 // |-> os == "Ubuntu" && (architecture == "arm") && options['is_flow_job'] == true
723 // Arm32 hardware (Build) -> Ubuntu 16.04 latest-or-auto
724 // |-> os == "Ubuntu" && (architecture == "arm") && options['is_build_job'] == true
725 // Arm32 hardware (Test) -> Helix ubuntu.1404.arm32.open queue
726 // |-> os == "Ubuntu" && (architecture == "arm")
728 // Arm64 (Build) -> arm64-cross-latest
729 // |-> os != "Windows_NT" && architecture == "arm64" && options['is_build_job'] == true
730 // Arm64 (Test) -> Helix Ubuntu.1604.Arm64.Iron.Open queue
731 // |-> os != "Windows_NT" && architecture == "arm64"
733 // Note: we are no longer using Jenkins tags "arm64-huge-page-size", "arm64-small-page-size".
734 // Support for Linux arm64 large page size has been removed for now, as it wasn't being used.
736 // Note: we are no longer using Jenkins tag 'latest-arm64' for arm/arm64 Windows build machines. Instead,
737 // we are using public VS2017 arm/arm64 tools in a VM from Helix.
739 // This has to be a arm arch
740 assert architecture in armArches
741 if (os == "Windows_NT") {
742 // arm32/arm64 Windows jobs share the same machines for now
743 def isBuild = options['use_arm64_build_machine'] == true
745 if (isBuild == true) {
747 label('Windows.10.Amd64.ClientRS4.DevEx.Open')
750 Utilities.setMachineAffinity(job, 'windows.10.arm64.open')
753 assert os != 'Windows_NT'
755 if (architecture == 'armem') {
756 // arm emulator (Tizen). Build and test on same machine,
759 Utilities.setMachineAffinity(job, 'Ubuntu', 'arm-cross-latest')
762 // arm/arm64 Ubuntu on hardware.
763 assert architecture == 'arm' || architecture == 'arm64'
764 def isFlow = (options != null) && (options['is_flow_job'] == true)
765 def isBuild = (options != null) && (options['is_build_job'] == true)
766 if (isFlow || isBuild) {
767 // arm/arm64 Ubuntu build machine. Build uses docker, so the actual host OS is not
768 // very important. Therefore, use latest or auto. Flow jobs don't need to use arm hardware.
769 Utilities.setMachineAffinity(job, 'Ubuntu16.04', 'latest-or-auto')
771 // arm/arm64 Ubuntu test machine. Specify the Helix queue name here.
772 if (architecture == 'arm64') {
773 assert os == 'Ubuntu16.04'
775 label('Ubuntu.1604.Arm64.Iron.Open')
779 assert os == 'Ubuntu'
781 label('ubuntu.1404.arm32.open')
789 // setJobMachineAffinity: compute the machine affinity options for a job,
790 // then set the job with those affinity options.
791 def static setJobMachineAffinity(def architecture, def os, def isBuildJob, def isTestJob, def isFlowJob, def job)
793 assert (isBuildJob && !isTestJob && !isFlowJob) ||
794 (!isBuildJob && isTestJob && !isFlowJob) ||
795 (!isBuildJob && !isTestJob && isFlowJob)
797 def affinityOptions = null
798 def affinityArchitecture = architecture
800 if (os == "Windows_NT") {
801 if (architecture in Constants.armWindowsCrossArchitectureList) {
803 affinityOptions = [ "use_arm64_build_machine" : true ]
804 } else if (isTestJob) {
805 affinityOptions = [ "use_arm64_build_machine" : false ]
806 } else if (isFlowJob) {
807 // For the flow jobs set the machine affinity as x64
808 affinityArchitecture = 'x64'
813 if ((architecture == 'arm64') || (architecture == 'arm')) {
815 affinityOptions = ['is_build_job': true]
816 } else if (isFlowJob) {
817 affinityOptions = ['is_flow_job': true]
822 setMachineAffinity(job, os, affinityArchitecture, affinityOptions)
825 def static isGCStressRelatedTesting(def scenario) {
826 // The 'r2r_gcstress15' scenario is a basic scenario.
827 // Detect it and make it a GCStress related.
828 if (scenario == 'r2r_gcstress15')
833 def gcStressTestEnvVars = [ 'COMPlus_GCStress', 'COMPlus_ZapDisable', 'COMPlus_HeapVerify']
834 def scenarioName = scenario.toLowerCase()
835 def isGCStressTesting = false
836 Constants.jitStressModeScenarios[scenario].each{ k, v ->
837 if (k in gcStressTestEnvVars) {
838 isGCStressTesting = true;
841 return isGCStressTesting
844 def static isCoreFxScenario(def scenario) {
845 def corefx_prefix = 'corefx_'
846 if (scenario.length() < corefx_prefix.length()) {
849 return scenario.substring(0,corefx_prefix.length()) == corefx_prefix
852 def static isR2RBaselineScenario(def scenario) {
853 return (scenario == 'r2r')
856 def static isR2RStressScenario(def scenario) {
857 return Constants.r2rStressScenarios.containsKey(scenario)
860 def static isR2RScenario(def scenario) {
861 return isR2RBaselineScenario(scenario) || isR2RStressScenario(scenario)
864 def static isJitStressScenario(def scenario) {
865 return Constants.jitStressModeScenarios.containsKey(scenario)
868 def static isLongGc(def scenario) {
869 return (scenario == 'longgc' || scenario == 'gcsimulator')
872 def static isJitDiff(def scenario) {
873 return (scenario == 'jitdiff')
876 def static isGcReliabilityFramework(def scenario) {
877 return (scenario == 'gc_reliability_framework')
880 def static isArmWindowsScenario(def scenario) {
881 return Constants.validArmWindowsScenarios.contains(scenario)
884 def static isValidPrTriggeredInnerLoopJob(os, architecture, configuration, isBuildOnly) {
885 if (isBuildOnly == true) {
886 os = 'Windows_NT_BuildOnly'
889 def validOsPrTriggerArchConfigs = Constants.prTriggeredValidInnerLoopCombos[os]
890 if (validOsPrTriggerArchConfigs != null) {
891 def validOsPrTriggerConfigs = validOsPrTriggerArchConfigs[architecture]
892 if (validOsPrTriggerConfigs != null) {
893 if (configuration in validOsPrTriggerConfigs) {
902 // This means the job builds and runs the 'innerloop' test set. This does not mean the job is
903 // scheduled with a default PR trigger despite the correlation being true at the moment.
904 def static isInnerloopTestScenario(def scenario) {
905 return (scenario == 'innerloop' || scenario == 'no_tiered_compilation_innerloop')
908 def static isCrossGenComparisonScenario(def scenario) {
909 return (scenario == 'crossgen_comparison')
912 def static shouldGenerateCrossGenComparisonJob(def os, def architecture, def configuration, def scenario) {
913 assert isCrossGenComparisonScenario(scenario)
914 return ((os == 'Ubuntu' && architecture == 'arm') || (os == 'Ubuntu16.04' && architecture == 'arm64')) && (configuration == 'Checked' || configuration == 'Release')
917 def static getFxBranch(def branch) {
918 def fxBranch = branch
919 // Map 'dev/unix_test_workflow' to 'master' so we can test CoreFX jobs in the CoreCLR dev/unix_test_workflow
920 // branch even though CoreFX doesn't have such a branch.
921 if (branch == 'dev/unix_test_workflow') {
927 def static setJobTimeout(newJob, isPR, architecture, configuration, scenario, isBuildOnly) {
928 // 2 hours (120 minutes) is the default timeout
931 if (!isInnerloopTestScenario(scenario)) {
932 // Pri-1 test builds take a long time (see calculateBuildCommands()). So up the Pri-1 build jobs timeout.
937 // Note that these can only increase, never decrease, the Pri-1 timeout possibly set above.
938 if (isGCStressRelatedTesting(scenario)) {
941 else if (isCoreFxScenario(scenario)) {
944 else if (isJitStressScenario(scenario)) {
947 else if (isR2RBaselineScenario(scenario)) {
950 else if (isLongGc(scenario)) {
953 else if (isJitDiff(scenario)) {
956 else if (isGcReliabilityFramework(scenario)) {
959 else if (architecture == 'armem' || architecture == 'arm64') {
963 if (architecture == 'arm') {
964 // ARM32 machines are particularly slow.
969 if (configuration == 'Debug') {
970 // Debug runs can be very slow. Add an hour.
974 // If we've changed the timeout from the default, set it in the job.
976 if (timeout != 120) {
977 Utilities.setJobTimeout(newJob, timeout)
981 def static getJobFolder(def scenario) {
982 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
985 if (scenario == 'illink') {
991 def static getStressModeDisplayName(def scenario) {
993 Constants.jitStressModeScenarios[scenario].each{ k, v ->
994 def prefixLength = 'COMPlus_'.length()
995 if (k.length() >= prefixLength) {
996 def modeName = k.substring(prefixLength, k.length())
997 if (displayStr != '') {
998 // Separate multiple variables with a space.
1001 displayStr += modeName + '=' + v
1005 if (isCoreFxScenario(scenario)) {
1006 displayStr = ('CoreFx ' + displayStr).trim()
1012 def static getR2RDisplayName(def scenario) {
1013 // Assume the scenario name is one from the r2rStressScenarios dict, and remove its "r2r_" prefix.
1014 def displayStr = scenario
1015 def prefixLength = 'r2r_'.length()
1016 if (displayStr.length() >= prefixLength) {
1017 displayStr = "R2R " + displayStr.substring(prefixLength, displayStr.length())
1018 } else if (scenario == 'r2r') {
1024 def static getScenarioDisplayString(def scenario) {
1027 return "Innerloop Build and Test"
1029 case 'no_tiered_compilation_innerloop':
1030 def displayStr = getStressModeDisplayName(scenario)
1031 return "Innerloop Build and Test (Jit - ${displayStr})"
1033 case 'corefx_innerloop':
1034 return "CoreFX Tests"
1037 return "Build and Test"
1040 return "Jit Diff Build and Test"
1043 return "IL RoundTrip Build and Test"
1046 return "Long-Running GC Build & Test"
1049 return "GC Simulator"
1051 case 'standalone_gc':
1052 return "Standalone GC"
1054 case 'gc_reliability_framework':
1055 return "GC Reliability Framework"
1061 if (isJitStressScenario(scenario)) {
1062 def displayStr = getStressModeDisplayName(scenario)
1063 return "Build and Test (Jit - ${displayStr})"
1065 else if (isR2RScenario(scenario)) {
1066 def displayStr = getR2RDisplayName(scenario)
1067 return "${displayStr} Build and Test"
1070 return "${scenario}"
1075 println("Unknown scenario: ${scenario}");
1080 // Functions to create an environment script.
1081 // envScriptCreate -- initialize the script (call first)
1082 // envScriptFinalize -- finalize the script (call last)
1083 // envScriptSetStressModeVariables -- set stress mode variables in the env script
1084 // envScriptAppendExistingScript -- append an existing script to the generated script
1086 // Each script returns a string of commands. Concatenate all the strings together before
1087 // adding them to the builds commands, to make sure they get executed as one Jenkins script.
1090 // Initialize the environment setting script.
1091 def static envScriptCreate(def os, def stepScriptLocation) {
1093 if (os == 'Windows_NT') {
1094 stepScript += "echo Creating TestEnv script\r\n"
1095 stepScript += "if exist ${stepScriptLocation} del ${stepScriptLocation}\r\n"
1097 // Create at least an empty script.
1098 stepScript += "echo. > ${stepScriptLocation}\r\n"
1101 stepScript += "echo Creating environment setting script\n"
1102 stepScript += "echo \\#\\!/usr/bin/env bash > ${stepScriptLocation}\n"
1108 // Generates the string for setting stress mode variables.
1109 def static envScriptSetStressModeVariables(def os, def stressModeVars, def stepScriptLocation) {
1111 if (os == 'Windows_NT') {
1112 stressModeVars.each{ k, v ->
1113 // Write out what we are writing to the script file
1114 stepScript += "echo Setting ${k}=${v}\r\n"
1115 // Write out the set itself to the script file`
1116 stepScript += "echo set ${k}=${v} >> ${stepScriptLocation}\r\n"
1120 stressModeVars.each{ k, v ->
1121 // Write out what we are writing to the script file
1122 stepScript += "echo Setting ${k}=${v}\n"
1123 // Write out the set itself to the script file`
1124 stepScript += "echo export ${k}=${v} >> ${stepScriptLocation}\n"
1131 // Append an existing script to an environment script.
1132 // Returns string of commands to do this.
1133 def static envScriptAppendExistingScript(def os, def appendScript, def stepScriptLocation) {
1134 assert (os == 'Windows_NT')
1137 stepScript += "echo Appending ${appendScript} to ${stepScriptLocation}\r\n"
1138 stepScript += "type ${appendScript} >> ${stepScriptLocation}\r\n"
1143 // Finalize an environment setting script.
1144 // Returns string of commands to do this.
1145 def static envScriptFinalize(def os, def stepScriptLocation) {
1148 if (os == 'Windows_NT') {
1149 // Display the resulting script. This is useful when looking at the output log file.
1150 stepScript += "echo Display the total script ${stepScriptLocation}\r\n"
1151 stepScript += "type ${stepScriptLocation}\r\n"
1154 stepScript += "chmod +x ${stepScriptLocation}\n"
1160 def static isNeedDocker(def architecture, def os, def isBuild) {
1162 if (architecture == 'x86' && os == 'Ubuntu') {
1165 else if (architecture == 'armem') {
1168 else if (architecture == 'arm') {
1169 if (os == 'Ubuntu') {
1173 else if (architecture == 'arm64') {
1174 if (os == 'Ubuntu16.04') {
1180 if (architecture == 'x86' && os == 'Ubuntu') {
1187 def static getDockerImageName(def architecture, def os, def isBuild) {
1188 // We must change some docker private images to official later
1190 if (architecture == 'x86' && os == 'Ubuntu') {
1191 return "hseok82/dotnet-buildtools-prereqs:ubuntu-16.04-crossx86-ef0ac75-20175511035548"
1193 else if (architecture == 'armem') {
1194 if (os == 'Tizen') {
1195 return "tizendotnet/dotnet-buildtools-prereqs:ubuntu-16.04-cross-e435274-20180426002255-tizen-rootfs-5.0m1"
1198 else if (architecture == 'arm') {
1199 if (os == 'Ubuntu') {
1200 return "microsoft/dotnet-buildtools-prereqs:ubuntu-14.04-cross-e435274-20180426002420"
1203 else if (architecture == 'arm64') {
1204 if (os == 'Ubuntu16.04') {
1205 return "microsoft/dotnet-buildtools-prereqs:ubuntu-16.04-cross-arm64-a3ae44b-20180315221921"
1210 if (architecture == 'x86' && os == 'Ubuntu') {
1211 return "hseok82/dotnet-buildtools-prereqs:ubuntu1604_x86_test"
1214 println("Unknown architecture to use docker: ${architecture} ${os}");
1218 def static getTestArtifactsTgzFileName(def osGroup, def architecture, def configuration) {
1219 return "bin-tests-${osGroup}.${architecture}.${configuration}.tgz"
1222 // We have a limited amount of some hardware. For these, scale back the periodic testing we do,
1223 // and only allowing using this hardware in some specific branches.
1224 def static jobRequiresLimitedHardware(def architecture, def os) {
1225 if (architecture == 'arm') {
1226 // arm Windows and Linux hardware is limited.
1229 else if (architecture == 'arm64') {
1230 // arm64 Windows and Linux hardware is limited.
1238 // Calculates the name of the build job based on some typical parameters.
1240 def static getJobName(def configuration, def architecture, def os, def scenario, def isBuildOnly) {
1241 // If the architecture is x64, do not add that info into the build name.
1242 // Need to change around some systems and other builds to pick up the right builds
1245 def suffix = scenario != 'normal' ? "_${scenario}" : '';
1250 switch (architecture) {
1252 if (scenario == 'normal') {
1253 // For now we leave x64 off of the name for compatibility with other jobs
1254 baseName = configuration.toLowerCase() + '_' + os.toLowerCase()
1256 else if (scenario == 'formatting') {
1257 // we don't care about the configuration for the formatting job. It runs all configs
1258 baseName = architecture.toLowerCase() + '_' + os.toLowerCase()
1261 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
1265 // These are cross builds
1266 assert os == 'Tizen'
1267 baseName = 'armel_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
1271 // These are cross builds
1272 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
1275 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
1278 println("Unknown architecture: ${architecture}");
1283 return baseName + suffix
1286 def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob, def bidailyCrossList) {
1288 // The dev/unix_test_workflow branch is used for Jenkins CI testing. We generally do not need any non-PR
1289 // triggers in the branch, because that would use machine resources unnecessarily.
1290 if (branch == 'dev/unix_test_workflow') {
1294 // Limited hardware is restricted for non-PR triggers to certain branches.
1295 if (jobRequiresLimitedHardware(architecture, os) && (!(branch in Constants.LimitedHardwareBranches))) {
1299 // Ubuntu x86 CI jobs are failing. Disable non-PR triggered jobs to avoid these constant failures
1300 // until this is fixed. Tracked by https://github.com/dotnet/coreclr/issues/19003.
1301 if (architecture == 'x86' && os == 'Ubuntu') {
1305 def isNormalOrInnerloop = (scenario == "normal" || scenario == "innerloop")
1309 case 'crossgen_comparison':
1310 if (isFlowJob && ((os == 'Ubuntu' && architecture == 'arm') || (os == 'Ubuntu16.04' && architecture == 'arm64')) && (configuration == 'Checked' || configuration == 'Release')) {
1311 addPeriodicTriggerHelper(job, '@daily')
1315 case 'pmi_asm_diffs':
1316 // No non-PR triggers for now.
1320 switch (architecture) {
1323 if (isFlowJob && architecture == 'x86' && os == 'Ubuntu') {
1324 addPeriodicTriggerHelper(job, '@daily')
1326 else if (isFlowJob || os == 'Windows_NT' || (architecture == 'x64' && !(os in Constants.crossList))) {
1327 addGithubPushTriggerHelper(job)
1331 if (os == 'Windows_NT') {
1332 if (isFlowJob || (isNormalOrInnerloop && (configuration == 'Debug'))) {
1333 // We would normally want a per-push trigger, but with limited hardware we can't keep up.
1334 // Do the builds daily.
1335 addPeriodicTriggerHelper(job, '@daily')
1339 // Only the flow jobs get push triggers; the build and test jobs are triggered by the flow job.
1341 addPeriodicTriggerHelper(job, '@daily')
1346 if (os == 'Windows_NT') {
1347 if (isFlowJob || (isNormalOrInnerloop && (configuration == 'Debug'))) {
1348 // We would normally want a push trigger, but with limited hardware we can't keep up.
1349 // Do the builds daily.
1350 addPeriodicTriggerHelper(job, '@daily')
1354 assert os == 'Ubuntu'
1355 // Only the flow jobs get push triggers; the build and test jobs are triggered by the flow job.
1357 // Currently no push triggers, with limited arm Linux hardware.
1358 // TODO: If we have enough machine capacity, add some arm Linux push triggers.
1359 addPeriodicTriggerHelper(job, '@daily')
1364 addGithubPushTriggerHelper(job)
1367 println("Unknown architecture: ${architecture}");
1373 assert !(os in bidailyCrossList)
1374 // r2r gets a push trigger for checked/release
1375 if (configuration == 'Checked' || configuration == 'Release') {
1376 if (architecture == 'x64' && os != 'OSX10.12') {
1377 //Flow jobs should be Windows, Ubuntu, OSX0.12, or CentOS
1378 if (isFlowJob || os == 'Windows_NT') {
1379 addGithubPushTriggerHelper(job)
1381 // OSX10.12 r2r jobs should only run every 12 hours, not daily.
1382 } else if (architecture == 'x64' && os == 'OSX10.12'){
1384 addPeriodicTriggerHelper(job, 'H H/12 * * *')
1387 // For x86, only add per-commit jobs for Windows
1388 else if (architecture == 'x86') {
1389 if (os == 'Windows_NT') {
1390 addGithubPushTriggerHelper(job)
1393 // arm r2r jobs should only run weekly.
1394 else if (architecture == 'arm') {
1396 addPeriodicTriggerHelper(job, '@weekly')
1399 // arm64 r2r jobs should only run weekly.
1400 else if (architecture == 'arm64') {
1402 addPeriodicTriggerHelper(job, '@weekly')
1407 case 'r2r_jitstress1':
1408 case 'r2r_jitstress2':
1409 case 'r2r_jitstress1_tiered':
1410 case 'r2r_jitstress2_tiered':
1411 case 'r2r_jitstressregs1':
1412 case 'r2r_jitstressregs2':
1413 case 'r2r_jitstressregs3':
1414 case 'r2r_jitstressregs4':
1415 case 'r2r_jitstressregs8':
1416 case 'r2r_jitstressregs0x10':
1417 case 'r2r_jitstressregs0x80':
1418 case 'r2r_jitstressregs0x1000':
1419 case 'r2r_jitminopts':
1420 case 'r2r_jitforcerelocs':
1421 case 'r2r_gcstress15':
1422 case 'r2r_no_tiered_compilation':
1423 assert !(os in bidailyCrossList)
1425 // GCStress=C is currently not supported on OS X
1426 if (os == 'OSX10.12' && isGCStressRelatedTesting(scenario)) {
1430 if (configuration == 'Checked' || configuration == 'Release') {
1431 if (architecture == 'x64') {
1432 //Flow jobs should be Windows, Ubuntu, OSX10.12, or CentOS
1433 if (isFlowJob || os == 'Windows_NT') {
1434 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
1437 // For x86, only add periodic jobs for Windows
1438 else if (architecture == 'x86') {
1439 if (os == 'Windows_NT') {
1440 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
1443 else if (architecture == 'arm') {
1445 addPeriodicTriggerHelper(job, '@weekly')
1448 else if (architecture == 'arm64') {
1450 addPeriodicTriggerHelper(job, '@weekly')
1456 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1457 assert configuration == 'Release'
1458 assert architecture == 'x64'
1459 addPeriodicTriggerHelper(job, '@daily')
1460 // TODO: Add once external email sending is available again
1461 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
1464 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1465 assert configuration == 'Release'
1466 assert architecture == 'x64'
1467 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
1468 // TODO: Add once external email sending is available again
1469 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
1471 case 'standalone_gc':
1472 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1473 assert (configuration == 'Release' || configuration == 'Checked')
1474 // TODO: Add once external email sending is available again
1475 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
1476 addPeriodicTriggerHelper(job, '@daily')
1478 case 'gc_reliability_framework':
1479 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1480 assert (configuration == 'Release' || configuration == 'Checked')
1481 // Only triggered by phrase.
1484 assert !(os in bidailyCrossList)
1485 // ILASM/ILDASM roundtrip one gets a daily build, and only for release
1486 if (architecture == 'x64' && configuration == 'Release') {
1487 if (isFlowJob || os == 'Windows_NT') {
1488 addPeriodicTriggerHelper(job, '@daily')
1493 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1494 assert configuration == 'Checked'
1495 assert (architecture == 'x64' || architecture == 'x86')
1496 addGithubPushTriggerHelper(job)
1499 assert (os == 'Windows_NT' || os == "Ubuntu")
1500 assert architecture == 'x64'
1501 addGithubPushTriggerHelper(job)
1503 case 'jitstressregs1':
1504 case 'jitstressregs2':
1505 case 'jitstressregs3':
1506 case 'jitstressregs4':
1507 case 'jitstressregs8':
1508 case 'jitstressregs0x10':
1509 case 'jitstressregs0x80':
1510 case 'jitstressregs0x1000':
1512 case 'tieredcompilation':
1513 case 'no_tiered_compilation':
1517 case 'jitstress1_tiered':
1518 case 'jitstress2_tiered':
1519 case 'jitstress2_jitstressregs1':
1520 case 'jitstress2_jitstressregs2':
1521 case 'jitstress2_jitstressregs3':
1522 case 'jitstress2_jitstressregs4':
1523 case 'jitstress2_jitstressregs8':
1524 case 'jitstress2_jitstressregs0x10':
1525 case 'jitstress2_jitstressregs0x80':
1526 case 'jitstress2_jitstressregs0x1000':
1527 case 'tailcallstress':
1530 case 'jitnox86hwintrinsic':
1531 case 'jitincompletehwintrinsic':
1532 case 'jitx86hwintrinsicnoavx':
1533 case 'jitx86hwintrinsicnoavx2':
1534 case 'jitx86hwintrinsicnosimd':
1535 case 'corefx_baseline':
1536 case 'corefx_minopts':
1537 case 'corefx_tieredcompilation':
1538 case 'corefx_jitstress1':
1539 case 'corefx_jitstress2':
1540 case 'corefx_jitstressregs1':
1541 case 'corefx_jitstressregs2':
1542 case 'corefx_jitstressregs3':
1543 case 'corefx_jitstressregs4':
1544 case 'corefx_jitstressregs8':
1545 case 'corefx_jitstressregs0x10':
1546 case 'corefx_jitstressregs0x80':
1547 case 'corefx_jitstressregs0x1000':
1549 if (os == 'CentOS7.1') {
1552 if (os in bidailyCrossList) {
1555 // ARM corefx testing uses non-flow jobs to provide the configuration-specific
1556 // build for the flow job. We don't need cron jobs for these. Note that the
1557 // Windows ARM jobs depend on a Windows "build only" job that exits the trigger
1558 // function very early, so only non-Windows gets here.
1559 if ((architecture == 'arm') && isCoreFxScenario(scenario) && !isFlowJob) {
1562 if ((architecture == 'arm64') && isCoreFxScenario(scenario) && !isFlowJob) {
1565 if (jobRequiresLimitedHardware(architecture, os)) {
1566 if ((architecture == 'arm64') && (os == 'Ubuntu16.04')) {
1567 // These jobs are very fast on Linux/arm64 hardware, so run them daily.
1568 addPeriodicTriggerHelper(job, '@daily')
1571 addPeriodicTriggerHelper(job, '@weekly')
1575 addPeriodicTriggerHelper(job, '@daily')
1580 if (os == 'CentOS7.1') {
1583 if (os in bidailyCrossList) {
1586 addPeriodicTriggerHelper(job, '@weekly')
1589 case 'gcstress0xc_zapdisable':
1590 case 'gcstress0xc_zapdisable_jitstress2':
1591 case 'gcstress0xc_zapdisable_heapverify1':
1592 case 'gcstress0xc_jitstress1':
1593 case 'gcstress0xc_jitstress2':
1594 case 'gcstress0xc_minopts_heapverify1':
1595 if (os == 'OSX10.12') {
1596 // GCStress=C is currently not supported on OS X
1599 if (os == 'CentOS7.1') {
1602 if (os in bidailyCrossList) {
1605 addPeriodicTriggerHelper(job, '@weekly')
1609 // Testing on other operating systems TBD
1610 assert (os == 'Windows_NT' || os == 'Ubuntu')
1611 if (architecture == 'x64' || architecture == 'x86') {
1612 if (configuration == 'Checked') {
1613 addPeriodicTriggerHelper(job, '@daily')
1619 println("Unknown scenario: ${scenario}");
1626 // **************************
1627 // Define the basic inner loop builds for PR and commit. This is basically just the set
1628 // of coreclr builds over linux/osx 10.12/windows and debug/release/checked. In addition, the windows
1629 // builds will do a couple extra steps.
1630 // **************************
1632 // Adds a trigger for the PR build if one is needed. If isFlowJob is true, then this is the
1633 // flow job that rolls up the build and test for non-windows OS's. // If the job is a windows build only job,
1634 // it's just used for internal builds
1635 // If you add a job with a trigger phrase, please add that phrase to coreclr/Documentation/project-docs/ci-trigger-phrases.md
1636 def static addTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob) {
1637 def isNormalOrInnerloop = (scenario == "normal" || scenario == "innerloop")
1639 if (isWindowsBuildOnlyJob) {
1643 def bidailyCrossList = ['RHEL7.2', 'Debian8.4']
1644 // Non pull request builds.
1646 addNonPRTriggers(job, branch, isPR, architecture, os, configuration, scenario, isFlowJob, isWindowsBuildOnlyJob, bidailyCrossList)
1671 // Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers
1672 // We generally only have a distinct set of default triggers but a bunch of on-demand ones.
1674 def contextString = ""
1675 def triggerString = ""
1676 def needsTrigger = true
1677 def isDefaultTrigger = false
1678 def isArm64PrivateJob = false
1679 def scenarioString = ""
1681 // Set up default context string and trigger phrases. This is overridden in places, sometimes just to keep
1682 // the existing non-standard descriptions and phrases. In some cases, the scenarios are asymmetric, as for
1683 // some jobs where the Debug configuration just does builds, no tests.
1685 // Some configurations, like arm32/arm64, always use the exact scenario name as part of the context string.
1686 // This makes it possible to copy/paste the displayed context string as "@dotnet-bot test <context-string>"
1687 // to invoke the trigger. Any "fancy" context string makes that impossible, requiring the user to either
1688 // remember the mapping from context string to trigger string, or use "@dotnet-bot help" to look it up.
1690 if (architecture == 'armem') {
1691 assert os == 'Tizen'
1692 architecture = 'armel'
1695 switch (architecture) {
1699 contextString = "${os} ${architecture} Cross ${configuration}"
1700 triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1702 if (scenario == 'innerloop') {
1703 contextString += " Innerloop"
1704 triggerString += "\\W+Innerloop"
1707 contextString += " ${scenario}"
1708 triggerString += "\\W+${scenario}"
1711 if (scenario == 'pmi_asm_diffs') {
1712 // Don't add the "Build and Test" part
1714 else if (configuration == 'Debug') {
1715 contextString += " Build"
1716 triggerString += "\\W+Build"
1719 contextString += " Build and Test"
1720 triggerString += "\\W+Build and Test"
1723 triggerString += ".*"
1727 scenarioString = getScenarioDisplayString(scenario)
1728 contextString = "${os} ${architecture} ${configuration} ${scenarioString}"
1729 triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}"
1733 triggerString += "\\W+Build and Test.*"
1736 case 'corefx_innerloop': // maintain this asymmetry
1737 triggerString += "\\W+CoreFX Tests.*"
1741 triggerString += "\\W+${scenario}.*"
1745 triggerString += ".*"
1749 // Now determine what kind of trigger this job needs, if any. Any job should be triggerable, except for
1750 // non-flow jobs that are only used as part of flow jobs.
1752 switch (architecture) {
1753 case 'x64': // editor brace matching: {
1754 if (scenario == 'formatting') {
1755 assert configuration == 'Checked'
1756 if (os == 'Windows_NT' || os == 'Ubuntu') {
1757 isDefaultTrigger = true
1758 contextString = "${os} ${architecture} Formatting"
1763 if (scenario == 'pmi_asm_diffs') {
1764 // Everything is already set.
1765 // No default triggers.
1770 // OpenSUSE, Debian & RedHat get trigger phrases for pri 0 build, and pri 1 build & test
1773 if (scenario == 'innerloop') {
1775 contextString = "${os} ${architecture} ${configuration} Innerloop Build"
1776 isDefaultTrigger = true
1786 assert scenario != 'innerloop'
1787 contextString = "${os} ${architecture} ${configuration} Build"
1788 triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+Build.*"
1792 if (scenario == 'illink') {
1795 else if (scenario == 'corefx_innerloop') {
1796 if (configuration == 'Checked') {
1797 isDefaultTrigger = true
1805 // Triggers on the non-flow jobs aren't necessary here
1806 // Corefx testing uses non-flow jobs.
1807 if (!isFlowJob && !isCoreFxScenario(scenario)) {
1808 needsTrigger = false
1813 isDefaultTrigger = true
1816 case 'no_tiered_compilation_innerloop':
1817 if (os == 'Ubuntu') {
1818 isDefaultTrigger = true
1830 // CentOS uses checked for default PR tests while debug is build only
1831 if (configuration == 'Debug') {
1832 isDefaultTrigger = true
1833 contextString = "${os} ${architecture} ${configuration} Innerloop Build"
1837 // Make sure this is a flow job to get build and test.
1839 needsTrigger = false
1843 if (configuration == 'Checked') {
1844 assert job.name.contains("flow")
1845 isDefaultTrigger = true
1846 contextString = "${os} ${architecture} ${configuration} Innerloop Build and Test"
1851 // Make sure this is a flow job to get build and test.
1853 needsTrigger = false
1866 case 'no_tiered_compilation_innerloop':
1867 isDefaultTrigger = true
1870 case 'corefx_innerloop':
1871 if (configuration == 'Checked' || configuration == 'Release') {
1872 isDefaultTrigger = true
1882 println("Unknown os: ${os}");
1889 // editor brace matching: }
1891 case 'armel': // editor brace matching: {
1894 azureVMAgentPostBuildAction {
1895 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1902 if (scenario == 'innerloop') {
1903 if (configuration == 'Checked') {
1904 isDefaultTrigger = true
1911 // editor brace matching: }
1914 case 'arm64': // editor brace matching: {
1920 // Triggers on the non-flow jobs aren't necessary
1922 needsTrigger = false
1925 if (os == 'Ubuntu' && architecture == 'arm') {
1928 case 'no_tiered_compilation_innerloop':
1929 if (configuration == 'Checked') {
1930 isDefaultTrigger = true
1933 case 'crossgen_comparison':
1934 if (configuration == 'Checked' || configuration == 'Release') {
1935 isDefaultTrigger = true
1943 assert isArmWindowsScenario(scenario)
1945 // For Debug normal/innerloop scenario, we don't do test runs, so we don't use flow jobs. That means we need a trigger for
1946 // the non-flow Build job. All others need a trigger on the flow job.
1947 def needsFlowJobTrigger = !(isNormalOrInnerloop && (configuration == 'Debug'))
1948 if (isFlowJob != needsFlowJobTrigger) {
1949 needsTrigger = false
1955 if (configuration == 'Checked') {
1956 isDefaultTrigger = true
1957 isArm64PrivateJob = true
1961 isArm64PrivateJob = true
1966 println("NYI os: ${os}");
1972 // editor brace matching: }
1973 case 'x86': // editor brace matching: {
1974 assert ((os == 'Windows_NT') || ((os == 'Ubuntu') && isNormalOrInnerloop))
1975 if (os == 'Ubuntu') {
1976 // Triggers on the non-flow jobs aren't necessary here
1978 needsTrigger = false
1982 // on-demand only for ubuntu x86
1983 contextString = "${os} ${architecture} ${configuration} Build"
1984 triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*"
1989 case 'no_tiered_compilation_innerloop':
1990 isDefaultTrigger = true
1997 // editor brace matching: }
2000 println("Unknown architecture: ${architecture}");
2006 if (isArm64PrivateJob) {
2007 if (isDefaultTrigger) {
2008 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
2011 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
2015 if (isDefaultTrigger) {
2016 Utilities.addGithubPRTriggerForBranch(job, branch, contextString)
2019 Utilities.addGithubPRTriggerForBranch(job, branch, contextString, triggerString)
2025 def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR, def architecture, def configuration, def os, def isBuildOnly) {
2026 def buildCommands = []
2027 def osGroup = getOSGroup(os)
2028 def lowerConfiguration = configuration.toLowerCase()
2030 // Which set of tests to build? Innerloop tests build Pri-0.
2031 // Currently, we only generate asm diffs on Pri-0 tests, if we generate asm diffs on tests at all.
2032 // CoreFX testing skipts building tests altogether (done below).
2033 // All other scenarios build Pri-1 tests.
2035 if (isInnerloopTestScenario(scenario)) {
2039 def doCoreFxTesting = isCoreFxScenario(scenario)
2041 def buildCoreclrTests = true
2042 if (doCoreFxTesting || (scenario == 'pmi_asm_diffs')) {
2043 // These scenarios don't need the coreclr tests build.
2044 buildCoreclrTests = false
2047 // Calculate the build steps, archival, and xunit results
2049 case 'Windows_NT': // editor brace matching: {
2050 switch (architecture) {
2053 def arch = architecture
2056 if (scenario == 'formatting') {
2057 buildCommands += "python -u tests\\scripts\\format.py -c %WORKSPACE% -o Windows_NT -a ${arch}"
2058 Utilities.addArchival(newJob, "format.patch", "", true, false)
2062 if (scenario == 'illink') {
2063 buildCommands += "tests\\scripts\\build_illink.cmd clone ${arch}"
2066 // If it is a release build for Windows, ensure PGO is used, else fail the build.
2067 if ((lowerConfiguration == 'release') &&
2068 (scenario in Constants.basicScenarios)) {
2070 buildOpts += ' -enforcepgo'
2073 if (buildCoreclrTests) {
2074 buildOpts += " -priority=${priority}"
2076 buildOpts += ' skiptests';
2079 // Set __TestIntermediateDir to something short. If __TestIntermediateDir is already set, build-test.cmd will
2080 // output test binaries to that directory. If it is not set, the binaries are sent to a default directory whose name is about
2081 // 35 characters long.
2083 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${arch} ${buildOpts}"
2085 if (scenario == 'pmi_asm_diffs') {
2086 // Now, generate the layout. We don't have any tests, but we need to restore the packages before calling runtest.cmd.
2087 // Call build-test.cmd to do this. It will do a little more than we need, but that's ok.
2088 buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} skipmanaged skipnative"
2089 buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${arch} GenerateLayoutOnly"
2091 // TODO: Add -target_branch and -commit_hash arguments based on GitHub variables.
2092 buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-pmi-diffs.py -arch ${arch} -ci_arch ${architecture} -build_type ${configuration}"
2095 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('_\\pmi\\asm', '.\\dasm.${os}.${architecture}.${configuration}.zip')\"";
2098 Utilities.addArchival(newJob, "dasm.${os}.${architecture}.${configuration}.zip")
2103 def runtestArguments = ''
2104 def testOpts = 'collectdumps'
2106 if (isR2RScenario(scenario)) {
2108 // If this is a ReadyToRun scenario, pass 'crossgen'
2109 // to cause framework assemblies to be crossgen'ed. Pass 'runcrossgentests'
2110 // to cause the tests to be crossgen'ed.
2112 testOpts += ' crossgen runcrossgentests'
2114 else if (scenario == 'jitdiff') {
2115 testOpts += ' jitdisasm crossgen'
2117 else if (scenario == 'ilrt') {
2118 testOpts += ' ilasmroundtrip'
2120 else if (isLongGc(scenario)) {
2121 testOpts += " ${scenario} sequential"
2123 else if (scenario == 'standalone_gc') {
2124 testOpts += ' gcname clrgc.dll'
2126 else if (scenario == 'illink') {
2127 testOpts += " link %WORKSPACE%\\linker\\linker\\bin\\netcore_Release\\netcoreapp2.0\\win10-${arch}\\publish\\illink.exe"
2130 // Default per-test timeout is 10 minutes. For stress modes and Debug scenarios, increase this
2131 // to 30 minutes (30 * 60 * 1000 = 180000). The "timeout" argument to runtest.cmd sets this, by
2132 // taking a timeout value in milliseconds. (Note that it sets the __TestTimeout environment variable,
2133 // which is read by the xunit harness.)
2134 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario) || (lowerConfiguration == 'debug'))
2136 def timeout = 1800000
2137 testOpts += " timeout ${timeout}"
2140 // If we are running a stress mode, we should write out the set of key
2141 // value env pairs to a file at this point and then we'll pass that to runtest.cmd
2143 def envScriptPath = ''
2144 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
2145 def buildCommandsStr = ''
2146 envScriptPath = "%WORKSPACE%\\SetStressModes.bat"
2147 buildCommandsStr += envScriptCreate(os, envScriptPath)
2149 if (isJitStressScenario(scenario)) {
2150 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], envScriptPath)
2152 else if (isR2RStressScenario(scenario)) {
2153 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.r2rStressScenarios[scenario], envScriptPath)
2156 envScriptFinalize(os, envScriptPath)
2158 // Note that buildCommands is an array of individually executed commands; we want all the commands used to
2159 // create the SetStressModes.bat script to be executed together, hence we accumulate them as strings
2160 // into a single script.
2161 buildCommands += buildCommandsStr
2163 if (envScriptPath != '') {
2164 testOpts += " TestEnv ${envScriptPath}"
2167 runtestArguments = "${lowerConfiguration} ${arch} ${testOpts}"
2169 if (doCoreFxTesting) {
2170 if (scenario == 'corefx_innerloop') {
2171 // Create CORE_ROOT and testhost
2172 buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} buildtesthostonly"
2173 buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTestsAll"
2175 // Archive and process (only) the test results
2176 Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml")
2177 Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml")
2180 def workspaceRelativeFxRoot = "_/fx"
2181 def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
2182 def fxBranch = getFxBranch(branch)
2184 buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-corefx-tests.py -arch ${arch} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${envScriptPath}"
2186 // Archive and process (only) the test results
2187 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
2188 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
2190 //Archive additional build stuff to diagnose why my attempt at fault injection isn't causing CI to fail
2191 Utilities.addArchival(newJob, "SetStressModes.bat", "", true, false)
2192 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/testhost/**", "", true, false)
2195 else if (isGcReliabilityFramework(scenario)) {
2196 buildCommands += "tests\\runtest.cmd ${runtestArguments} GenerateLayoutOnly"
2197 buildCommands += "tests\\scripts\\run-gc-reliability-framework.cmd ${arch} ${configuration}"
2200 def buildCommandsStr = "call tests\\runtest.cmd ${runtestArguments}\r\n"
2202 // If we ran the tests, collect the test logs collected by xunit. We want to do this even if the tests fail, so we
2203 // must do it in the same batch file as the test run.
2205 buildCommandsStr += "echo on\r\n" // Show the following commands in the log. "echo" doesn't alter the errorlevel.
2206 buildCommandsStr += "set saved_errorlevel=%errorlevel%\r\n"
2207 buildCommandsStr += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${arch}.${configuration}\\Reports', '.\\bin\\tests\\testReports.zip')\"\r\n";
2208 buildCommandsStr += "exit /b %saved_errorlevel%\r\n"
2210 def doNotFailIfNothingArchived = true
2211 def archiveOnlyIfSuccessful = false
2212 Utilities.addArchival(newJob, "bin/tests/testReports.zip", "", doNotFailIfNothingArchived, archiveOnlyIfSuccessful)
2214 buildCommands += buildCommandsStr
2216 } // end if (!isBuildOnly)
2218 if (!doCoreFxTesting) {
2219 // Run the rest of the build
2220 // Build the mscorlib for the other OS's
2221 buildCommands += "build.cmd ${lowerConfiguration} ${arch} linuxmscorlib"
2222 buildCommands += "build.cmd ${lowerConfiguration} ${arch} osxmscorlib"
2224 if (arch == 'x64') {
2225 buildCommands += "build.cmd ${lowerConfiguration} arm64 linuxmscorlib"
2228 if (!isJitStressScenario(scenario)) {
2229 // Zip up the tests directory so that we don't use so much space/time copying
2230 // 10s of thousands of files around.
2231 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${arch}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
2233 // For Windows, pull full test results and test drops for x86/x64.
2234 // No need to pull for stress mode scenarios (downstream builds use the default scenario)
2235 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
2238 if (scenario == 'jitdiff') {
2239 // retrieve jit-dasm output for base commit, and run jit-diff
2241 // if this is a build only job, we want to keep the default (build) artifacts for the flow job
2242 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**")
2247 Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true)
2251 // Archive the logs, even if the build failed (which is when they are most interesting).
2252 Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err,bin/Logs/MsbuildDebugLogs/*", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false)
2256 assert isArmWindowsScenario(scenario)
2260 if (buildCoreclrTests) {
2261 buildOpts += " -priority=${priority}"
2263 buildOpts += ' skiptests'
2266 // This is now a build only job. Do not run tests. Use the flow job.
2267 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} ${buildOpts}"
2269 if (doCoreFxTesting) {
2272 // Set the stress mode variables; this is incorporated into the generated CoreFx RunTests.cmd files.
2273 def envScriptPath = ''
2274 def buildCommandsStr = ''
2275 envScriptPath = "%WORKSPACE%\\SetStressModes.bat"
2276 buildCommandsStr += envScriptCreate(os, envScriptPath)
2277 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], envScriptPath)
2278 envScriptFinalize(os, envScriptPath)
2279 buildCommands += buildCommandsStr
2281 def workspaceRelativeFxRootLinux = "_/fx"
2282 def workspaceRelativeFxRootWin = "_\\fx"
2283 def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
2284 def fxBranch = getFxBranch(branch)
2286 buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${envScriptPath} -no_run_tests"
2288 // Zip up the CoreFx runtime and tests. We don't need the CoreCLR binaries; they have been copied to the CoreFX tree.
2289 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('${workspaceRelativeFxRootWin}\\artifacts\\bin\\testhost\\netcoreapp-Windows_NT-Release-${architecture}', '${workspaceRelativeFxRootWin}\\fxruntime.zip')\"";
2290 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('${workspaceRelativeFxRootWin}\\artifacts\\bin\\tests', '${workspaceRelativeFxRootWin}\\fxtests.zip')\"";
2292 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/fxruntime.zip")
2293 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/fxtests.zip")
2295 // Zip up the tests directory so that we don't use so much space/time copying
2296 // 10s of thousands of files around.
2297 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${architecture}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
2300 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
2303 // Archive the logs, even if the build failed (which is when they are most interesting).
2304 Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err,bin/Logs/MsbuildDebugLogs/*", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false)
2307 println("Unknown architecture: ${architecture}");
2312 // end case 'Windows_NT'; editor brace matching: }
2321 case 'Fedora24': // editor brace matching: {
2322 switch (architecture) {
2324 if (os == 'Ubuntu') {
2325 // build and PAL test
2326 def dockerImage = getDockerImageName(architecture, os, true)
2327 buildCommands += "docker run -i --rm -v \${WORKSPACE}:/opt/code -w /opt/code -e ROOTFS_DIR=/crossrootfs/x86 ${dockerImage} ./build.sh ${architecture} cross ${lowerConfiguration}"
2328 dockerImage = getDockerImageName(architecture, os, false)
2329 buildCommands += "docker run -i --rm -v \${WORKSPACE}:/opt/code -w /opt/code ${dockerImage} ./src/pal/tests/palsuite/runpaltests.sh /opt/code/bin/obj/${osGroup}.${architecture}.${configuration} /opt/code/bin/paltestout"
2330 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
2331 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
2336 if (scenario == 'formatting') {
2337 buildCommands += "python tests/scripts/format.py -c \${WORKSPACE} -o Linux -a ${architecture}"
2338 Utilities.addArchival(newJob, "format.patch", "", true, false)
2342 if (scenario == 'pmi_asm_diffs') {
2343 buildCommands += "./build.sh ${lowerConfiguration} ${architecture} skiptests skipbuildpackages"
2344 buildCommands += "./build-test.sh ${lowerConfiguration} ${architecture} generatelayoutonly"
2346 // TODO: Add -target_branch and -commit_hash arguments based on GitHub variables.
2347 buildCommands += "python -u \${WORKSPACE}/tests/scripts/run-pmi-diffs.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration}"
2350 buildCommands += "tar -czf dasm.${os}.${architecture}.${configuration}.tgz ./_/pmi/asm"
2351 Utilities.addArchival(newJob, "dasm.${os}.${architecture}.${configuration}.tgz")
2355 if (scenario == 'illink') {
2356 assert(os == 'Ubuntu')
2357 buildCommands += "./tests/scripts/build_illink.sh --clone --arch=${architecture}"
2360 if (!doCoreFxTesting) {
2361 // We run pal tests on all OS but generate mscorlib (and thus, nuget packages)
2362 // only on supported OS platforms.
2363 def bootstrapRid = Utilities.getBoostrapPublishRid(os)
2364 def bootstrapRidEnv = bootstrapRid != null ? "__PUBLISH_RID=${bootstrapRid} " : ''
2366 buildCommands += "${bootstrapRidEnv}./build.sh ${lowerConfiguration} ${architecture}"
2368 def testBuildOpts = ""
2369 if (priority == '1') {
2370 testBuildOpts = "priority1"
2373 buildCommands += "./build-test.sh ${lowerConfiguration} ${architecture} ${testBuildOpts}"
2374 buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout"
2376 // Archive the bin/tests folder for *_tst jobs
2377 def testArtifactsTgzFileName = getTestArtifactsTgzFileName(osGroup, architecture, configuration)
2378 buildCommands += "tar -czf ${testArtifactsTgzFileName} bin/tests/${osGroup}.${architecture}.${configuration}"
2379 Utilities.addArchival(newJob, "${testArtifactsTgzFileName}", "")
2381 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
2384 if (scenario == 'corefx_innerloop') {
2385 assert os == 'Ubuntu' || 'OSX10.12'
2386 assert architecture == 'x64'
2388 buildCommands += "./build.sh ${lowerConfiguration} ${architecture} skiptests"
2389 buildCommands += "./build-test.sh ${lowerConfiguration} ${architecture} generatetesthostonly"
2390 buildCommands += "./tests/runtest.sh ${lowerConfiguration} --corefxtestsall --testHostDir=\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}/testhost/ --coreclr-src=\${WORKSPACE}"
2393 // Archive and process (only) the test results
2394 Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml")
2395 Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml")
2398 // Corefx stress testing
2399 assert os == 'Ubuntu'
2400 assert architecture == 'x64'
2401 assert lowerConfiguration == 'checked'
2402 assert isJitStressScenario(scenario)
2405 buildCommands += "./build.sh ${lowerConfiguration} ${architecture}"
2407 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
2409 def envScriptCmds = envScriptCreate(os, scriptFileName)
2410 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
2411 envScriptCmds += envScriptFinalize(os, scriptFileName)
2412 buildCommands += envScriptCmds
2414 // Build and text corefx
2415 def workspaceRelativeFxRoot = "_/fx"
2416 def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRoot}"
2417 def fxBranch = getFxBranch(branch)
2419 buildCommands += "python -u \$WORKSPACE/tests/scripts/run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${scriptFileName}"
2421 // Archive and process (only) the test results
2422 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
2423 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
2427 // Archive the logs, even if the build failed (which is when they are most interesting).
2428 Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err,bin/Logs/MsbuildDebugLogs/*", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false)
2431 // Emulator cross builds for ARM runs on Tizen currently
2432 assert os == 'Tizen'
2434 def arm_abi = "armel"
2435 def linuxCodeName = "tizen"
2437 // Unzip the Windows test binaries first. Exit with 0
2438 buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0"
2440 // Unpack the corefx binaries
2441 buildCommands += "mkdir ./bin/CoreFxBinDir"
2442 buildCommands += "tar -xf ./artifacts/bin/build.tar.gz -C ./bin/CoreFxBinDir"
2444 // Call the ARM CI script to cross build and test using docker
2445 buildCommands += """./tests/scripts/arm32_ci_script.sh \\
2448 --linuxCodeName=${linuxCodeName} \\
2449 --buildConfig=${lowerConfiguration} \\
2450 --testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\
2451 --coreFxBinDir=./bin/CoreFxBinDir \\
2452 --testDirFile=./tests/testsRunningInsideARM.txt"""
2454 // Basic archiving of the build, no pal tests
2455 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
2459 // Non-Windows ARM cross builds on hardware run on Ubuntu only
2460 assert (os == 'Ubuntu') || (os == 'Ubuntu16.04')
2462 // Add some useful information to the log file. Ignore return codes.
2463 buildCommands += "uname -a || true"
2465 // Cross build the Ubuntu/arm product using docker with a docker image that contains the correct
2466 // Ubuntu cross-compilation toolset (running on a Ubuntu x64 host).
2467 // For CoreFX testing, we only need the product build; we don't need to generate the layouts. The product
2468 // build is then copied into the corefx layout by the run-corefx-test.py script. For CoreFX testing, we
2469 // ZIP up the generated CoreFX runtime and tests.
2471 def dockerImage = getDockerImageName(architecture, os, true)
2472 def dockerCmd = "docker run -i --rm -v \${WORKSPACE}:\${WORKSPACE} -w \${WORKSPACE} -e ROOTFS_DIR=/crossrootfs/${architecture} ${dockerImage} "
2474 buildCommands += "${dockerCmd}\${WORKSPACE}/build.sh ${lowerConfiguration} ${architecture} cross"
2476 if (doCoreFxTesting) {
2477 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
2479 def envScriptCmds = envScriptCreate(os, scriptFileName)
2480 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
2481 envScriptCmds += envScriptFinalize(os, scriptFileName)
2482 buildCommands += envScriptCmds
2484 // Build and text corefx
2485 def workspaceRelativeFxRootLinux = "_/fx"
2486 def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRootLinux}"
2487 def fxBranch = getFxBranch(branch)
2489 buildCommands += "${dockerCmd}python -u \$WORKSPACE/tests/scripts/run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${scriptFileName} -no_run_tests"
2491 // Docker creates files with root permission, so we need to zip in docker also, or else we'll get permission errors.
2492 buildCommands += "${dockerCmd}zip -r ${workspaceRelativeFxRootLinux}/fxruntime.zip ${workspaceRelativeFxRootLinux}/artifacts/bin/testhost/netcoreapp-Linux-Release-${architecture}"
2493 buildCommands += "${dockerCmd}zip -r ${workspaceRelativeFxRootLinux}/fxtests.zip ${workspaceRelativeFxRootLinux}/artifacts/bin/tests"
2495 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/fxruntime.zip")
2496 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/fxtests.zip")
2498 else if (isCrossGenComparisonScenario(scenario)) {
2499 buildCommands += "${dockerCmd}\${WORKSPACE}/build-test.sh ${lowerConfiguration} ${architecture} cross generatelayoutonly"
2501 def workspaceRelativeProductBinDir = "bin/Product/${osGroup}.${architecture}.${configuration}"
2502 def workspaceRelativeCoreLib = "${workspaceRelativeProductBinDir}/IL/System.Private.CoreLib.dll"
2503 def workspaceRelativeCoreRootDir = "bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root"
2504 def workspaceRelativeCrossGenComparisonScript = "tests/scripts/crossgen_comparison.py"
2505 def workspaceRelativeResultsDir = "_"
2506 def workspaceRelativeArtifactsArchive = "${os}.${architecture}.${configuration}.${scenario}.zip"
2507 def crossGenComparisonCmd = "python -u \${WORKSPACE}/${workspaceRelativeCrossGenComparisonScript} "
2508 def crossArch = "x64"
2509 def crossGenExecutable = "\${WORKSPACE}/${workspaceRelativeProductBinDir}/${crossArch}/crossgen"
2510 def workspaceRelativeCrossArchResultDir = "${workspaceRelativeResultsDir}/${osGroup}.${crossArch}_${architecture}.${configuration}"
2512 buildCommands += "${dockerCmd}mkdir -p \${WORKSPACE}/${workspaceRelativeCrossArchResultDir}"
2513 buildCommands += "${dockerCmd}${crossGenComparisonCmd}crossgen_corelib --crossgen ${crossGenExecutable} --il_corelib \${WORKSPACE}/${workspaceRelativeCoreLib} --result_dir \${WORKSPACE}/${workspaceRelativeCrossArchResultDir}"
2514 buildCommands += "${dockerCmd}${crossGenComparisonCmd}crossgen_framework --crossgen ${crossGenExecutable} --core_root \${WORKSPACE}/${workspaceRelativeCoreRootDir} --result_dir \${WORKSPACE}/${workspaceRelativeCrossArchResultDir}"
2516 buildCommands += "${dockerCmd}zip -r ${workspaceRelativeArtifactsArchive} ${workspaceRelativeCoreLib} ${workspaceRelativeCoreRootDir} ${workspaceRelativeCrossGenComparisonScript} ${workspaceRelativeResultsDir}"
2517 Utilities.addArchival(newJob, "${workspaceRelativeArtifactsArchive}")
2519 else if (scenario == 'pmi_asm_diffs') {
2520 buildCommands += "${dockerCmd}\${WORKSPACE}/build-test.sh ${lowerConfiguration} ${architecture} cross generatelayoutonly"
2522 // Pass `--skip_diffs` -- the actual diffs will be done on an arm machine in the test job. This is the build job.
2523 // TODO: Add -target_branch and -commit_hash arguments based on GitHub variables.
2524 buildCommands += "python -u \${WORKSPACE}/tests/scripts/run-pmi-diffs.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} --skip_diffs"
2526 // ZIP what we created.
2527 buildCommands += "zip -r product.${os}.${architecture}.${lowerConfiguration}.zip ./bin/Product/Linux.${architecture}.${configuration}"
2528 buildCommands += "zip -r product.baseline.${os}.${architecture}.${lowerConfiguration}.zip ./_/pmi/base/bin/Product/Linux.${architecture}.${configuration}"
2529 buildCommands += "zip -r coreroot.${os}.${architecture}.${lowerConfiguration}.zip ./bin/tests/Linux.${architecture}.${configuration}/Tests/Core_Root"
2530 buildCommands += "zip -r coreroot.baseline.${os}.${architecture}.${lowerConfiguration}.zip ./_/pmi/base/bin/tests/Linux.${architecture}.${configuration}/Tests/Core_Root"
2532 // Archive the built artifacts
2533 Utilities.addArchival(newJob, "product.${os}.${architecture}.${lowerConfiguration}.zip,product.baseline.${os}.${architecture}.${lowerConfiguration}.zip,coreroot.${os}.${architecture}.${lowerConfiguration}.zip,coreroot.baseline.${os}.${architecture}.${lowerConfiguration}.zip")
2536 // Then, using the same docker image, build the tests and generate the CORE_ROOT layout.
2538 def testBuildOpts = ""
2539 if (priority == '1') {
2540 testBuildOpts = "priority1"
2543 buildCommands += "${dockerCmd}\${WORKSPACE}/build-test.sh ${lowerConfiguration} ${architecture} cross ${testBuildOpts}"
2545 // ZIP up the built tests (including CORE_ROOT and native test components copied to the CORE_ROOT) for the test job (created in the flow job code)
2546 def testArtifactsTgzFileName = getTestArtifactsTgzFileName(osGroup, architecture, configuration)
2547 buildCommands += "tar -czf ${testArtifactsTgzFileName} bin/tests/${osGroup}.${architecture}.${configuration}"
2549 Utilities.addArchival(newJob, "${testArtifactsTgzFileName}", "")
2552 // Archive the logs, even if the build failed (which is when they are most interesting).
2553 Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err,bin/Logs/MsbuildDebugLogs/*", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false)
2555 // We need to clean up the build machines; the docker build leaves newly built files with root permission, which
2556 // the cleanup task in Jenkins can't remove.
2559 azureVMAgentPostBuildAction {
2560 agentPostBuildAction('Delete agent after build execution (when idle).')
2566 println("Unknown architecture: ${architecture}");
2571 // editor brace matching: }
2573 println("Unknown os: ${os}");
2578 return buildCommands
2581 // Determine if we should generate a job for the given parameters. This is for non-flow jobs: either build and test, or build only.
2582 // Returns true if the job should be generated.
2583 def static shouldGenerateJob(def scenario, def isPR, def architecture, def configuration, def os, def isBuildOnly)
2585 // The various "innerloop" jobs are only available as PR triggered.
2588 if (isInnerloopTestScenario(scenario)) {
2592 if (scenario == 'corefx_innerloop') {
2597 // Tizen is only supported for armem architecture
2598 if (os == 'Tizen' && architecture != 'armem') {
2602 // Filter based on architecture.
2604 switch (architecture) {
2606 if ((os != 'Windows_NT') && (os != 'Ubuntu')) {
2611 if ((os != 'Windows_NT') && (os != 'Ubuntu16.04')) {
2616 if (os != 'Tizen') {
2621 if ((os != 'Windows_NT') && (os != 'Ubuntu')) {
2626 // Everything implemented
2629 println("Unknown architecture: ${architecture}")
2634 // Which (Windows) build only jobs are required?
2636 def isNormalOrInnerloop = (scenario == 'innerloop' || scenario == 'normal')
2639 switch (architecture) {
2642 // We use build only jobs for Windows arm/arm64 cross-compilation corefx testing, so we need to generate builds for that.
2643 if (!isCoreFxScenario(scenario)) {
2649 if (!isNormalOrInnerloop) {
2658 // Filter based on scenario.
2660 if (isJitStressScenario(scenario)) {
2661 if (configuration != 'Checked') {
2665 def isEnabledOS = (os == 'Windows_NT') ||
2666 (os == 'Ubuntu' && (architecture == 'x64') && isCoreFxScenario(scenario)) ||
2667 (os == 'Ubuntu' && architecture == 'arm') ||
2668 (os == 'Ubuntu16.04' && architecture == 'arm64')
2673 switch (architecture) {
2678 // x86 ubuntu: no stress modes
2679 if (os == 'Ubuntu') {
2686 // We use build only jobs for Windows arm/arm64 cross-compilation corefx testing, so we need to generate builds for that.
2687 // No "regular" Windows arm corefx jobs, e.g.
2688 // For Ubuntu arm corefx testing, we use regular jobs (not "build only" since only Windows has "build only", and
2689 // the Ubuntu arm "regular" jobs don't run tests anyway).
2690 if (os == 'Windows_NT') {
2691 if (! (isBuildOnly && isCoreFxScenario(scenario)) ) {
2696 if (!isCoreFxScenario(scenario)) {
2703 // armem: no stress jobs for ARM emulator.
2707 else if (isR2RScenario(scenario)) {
2708 if (os != 'Windows_NT') {
2712 if (isR2RBaselineScenario(scenario)) {
2713 // no need for Debug scenario; Checked is sufficient
2714 if (configuration != 'Checked' && configuration != 'Release') {
2718 else if (isR2RStressScenario(scenario)) {
2719 // Stress scenarios only run with Checked builds, not Release (they would work with Debug, but be slow).
2720 if (configuration != 'Checked') {
2725 switch (architecture) {
2728 // Windows arm/arm64 ready-to-run jobs use flow jobs and test jobs, but depend on "normal" (not R2R specific) build jobs.
2735 else if (isCrossGenComparisonScenario(scenario)) {
2736 return shouldGenerateCrossGenComparisonJob(os, architecture, configuration, scenario)
2742 // The ilrt build isn't necessary except for Windows_NT2003. Non-Windows NT uses
2743 // the default scenario build
2744 if (os != 'Windows_NT') {
2748 if (architecture != 'x64') {
2752 if (configuration != 'Release') {
2757 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2760 if (architecture != 'x64') {
2763 if (configuration != 'Checked') {
2769 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2772 if (architecture != 'x64') {
2775 if (configuration != 'Release') {
2779 case 'gc_reliability_framework':
2780 case 'standalone_gc':
2781 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2785 if (architecture != 'x64') {
2789 if (configuration != 'Release' && configuration != 'Checked') {
2793 // We only run Windows and Ubuntu x64 Checked for formatting right now
2795 if (os != 'Windows_NT' && os != 'Ubuntu') {
2798 if (architecture != 'x64') {
2801 if (configuration != 'Checked') {
2806 if (os != 'Windows_NT' && (os != 'Ubuntu' || architecture != 'x64')) {
2809 if (architecture != 'x64' && architecture != 'x86') {
2817 if (!isValidPrTriggeredInnerLoopJob(os, architecture, configuration, isBuildOnly)) {
2821 case 'corefx_innerloop':
2822 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2825 if (architecture != 'x64') {
2829 case 'pmi_asm_diffs':
2830 if (configuration != 'Checked') {
2833 if (architecture == 'armem') {
2836 // Currently, we don't support pmi_asm_diffs for Windows arm/arm64. We don't have a dotnet CLI available to
2837 // build jitutils. The jobs are not in validArmWindowsScenarios.
2838 if ((os == 'Windows_NT') && (architecture == 'arm' || architecture == 'arm64')) {
2841 // Currently, no support for Linux x86.
2842 if ((os != 'Windows_NT') && (architecture == 'x86')) {
2847 println("Unknown scenario: ${scenario}")
2853 // The job was not filtered out, so we should generate it!
2857 Constants.allScenarios.each { scenario ->
2858 [true, false].each { isPR ->
2859 Constants.architectureList.each { architecture ->
2860 Constants.configurationList.each { configuration ->
2861 Constants.osList.each { os ->
2862 // If the OS is Windows_NT_BuildOnly, set the isBuildOnly flag to true
2863 // and reset the os to Windows_NT
2864 def isBuildOnly = false
2865 if (os == 'Windows_NT_BuildOnly') {
2870 if (!shouldGenerateJob(scenario, isPR, architecture, configuration, os, isBuildOnly)) {
2875 def jobName = getJobName(configuration, architecture, os, scenario, isBuildOnly)
2876 def folderName = getJobFolder(scenario)
2878 // Create the new job
2879 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folderName)) {}
2881 addToViews(newJob, false, isPR, architecture, os, configuration, scenario) // isFlowJob == false
2883 setJobMachineAffinity(architecture, os, true, false, false, newJob) // isBuildJob = true, isTestJob = false, isFlowJob = false
2885 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
2886 addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly) // isFlowJob==false
2887 setJobTimeout(newJob, isPR, architecture, configuration, scenario, isBuildOnly)
2889 // Copy Windows build test binaries and corefx build artifacts for Linux cross build for armem.
2890 // We don't use a flow job for this, but we do depend on there being existing builds with these
2891 // artifacts produced.
2892 if ((architecture == 'armem') && (os == 'Tizen')) {
2893 // Define the Windows Tests and Corefx build job names
2894 def lowerConfiguration = configuration.toLowerCase()
2895 def WindowsTestsName = projectFolder + '/' +
2896 Utilities.getFullJobName(project,
2897 getJobName(lowerConfiguration, 'x64' , 'windows_nt', 'normal', true),
2899 def fxBranch = getFxBranch(branch)
2900 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' +
2901 Utilities.getFolderName(fxBranch)
2903 def arm_abi = 'armel'
2904 def corefx_os = 'tizen'
2906 // Let's use release CoreFX to test checked CoreCLR,
2907 // because we do not generate checked CoreFX in CoreFX CI yet.
2908 def corefx_lowerConfiguration = lowerConfiguration
2909 if (lowerConfiguration == 'checked') {
2910 corefx_lowerConfiguration = 'release'
2913 // Copy the Windows test binaries and the Corefx build binaries
2916 copyArtifacts(WindowsTestsName) {
2917 includePatterns('bin/tests/tests.zip')
2919 latestSuccessful(true)
2922 copyArtifacts("${corefxFolder}/${corefx_os}_${arm_abi}_cross_${corefx_lowerConfiguration}") {
2923 includePatterns('artifacts/bin/build.tar.gz')
2925 latestSuccessful(true)
2932 def buildCommands = calculateBuildCommands(newJob, scenario, branch, isPR, architecture, configuration, os, isBuildOnly)
2936 if (os == 'Windows_NT') {
2937 buildCommands.each { buildCommand ->
2938 batchFile(buildCommand)
2942 buildCommands.each { buildCommand ->
2955 // Create a Windows ARM/ARM64 test job that will be used by a flow job.
2956 // Returns the newly created job.
2957 def static CreateWindowsArmTestJob(def dslFactory, def project, def architecture, def os, def configuration, def scenario, def isPR, def inputCoreCLRBuildName)
2959 def osGroup = getOSGroup(os)
2960 def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
2962 def jobFolder = getJobFolder(scenario)
2963 def newJob = dslFactory.job(Utilities.getFullJobName(project, jobName, isPR, jobFolder)) {
2965 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2969 // Set up the copies
2971 // Coreclr build we are trying to test
2973 // ** NOTE ** This will, correctly, overwrite the CORE_ROOT from the Windows test archive
2975 copyArtifacts(inputCoreCLRBuildName) {
2976 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2978 buildNumber('${CORECLR_BUILD}')
2982 if (isCoreFxScenario(scenario)) {
2984 // Only arm/arm64 supported for corefx testing now.
2985 assert architecture == 'arm' || architecture == 'arm64'
2987 // Unzip CoreFx runtime
2988 batchFile("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('_\\fx\\fxruntime.zip', '_\\fx\\artifacts\\bin\\testhost\\netcoreapp-Windows_NT-Release-${architecture}')\"")
2990 // Unzip CoreFx tests.
2991 batchFile("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('_\\fx\\fxtests.zip', '_\\fx\\artifacts\\bin\\tests')\"")
2993 // Add the script to run the corefx tests
2994 def corefx_runtime_path = "%WORKSPACE%\\_\\fx\\artifacts\\bin\\testhost\\netcoreapp-Windows_NT-Release-${architecture}"
2995 def corefx_tests_dir = "%WORKSPACE%\\_\\fx\\artifacts\\bin\\tests"
2996 def corefx_exclusion_file = "%WORKSPACE%\\tests\\${architecture}\\corefx_test_exclusions.txt"
2997 batchFile("call %WORKSPACE%\\tests\\scripts\\run-corefx-tests.bat ${corefx_runtime_path} ${corefx_tests_dir} ${corefx_exclusion_file} ${architecture}")
2999 } else { // !isCoreFxScenario(scenario)
3002 batchFile("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('bin\\tests\\tests.zip', 'bin\\tests\\${osGroup}.${architecture}.${configuration}')\"")
3004 def buildCommands = ""
3006 def coreRootLocation = "%WORKSPACE%\\bin\\tests\\Windows_NT.${architecture}.${configuration}\\Tests\\Core_Root"
3007 def addEnvVariable = { variable, value -> buildCommands += "set ${variable}=${value}\r\n"}
3008 def addCommand = { cmd -> buildCommands += "${cmd}\r\n"}
3010 // Make sure Command Extensions are enabled. Used so %ERRORLEVEL% is available.
3011 addCommand("SETLOCAL ENABLEEXTENSIONS")
3014 addEnvVariable("CORE_ROOT", coreRootLocation)
3015 addEnvVariable("COMPlus_NoGuiOnAssert", "1")
3016 addEnvVariable("COMPlus_ContinueOnAssert", "0")
3018 // If we are running a stress mode, we'll set those variables as well
3019 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
3020 def stressValues = null
3021 if (isJitStressScenario(scenario)) {
3022 stressValues = Constants.jitStressModeScenarios[scenario]
3025 stressValues = Constants.r2rStressScenarios[scenario]
3028 stressValues.each { key, value ->
3029 addEnvVariable(key, value)
3033 if (isR2RScenario(scenario)) {
3034 // Crossgen the framework assemblies.
3035 buildCommands += """
3036 @for %%F in (%CORE_ROOT%\\*.dll) do @call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
3037 @goto skip_PrecompileAssembly
3040 @REM Skip mscorlib since it is already precompiled.
3041 @if /I "%3" == "mscorlib.dll" exit /b 0
3042 @if /I "%3" == "mscorlib.ni.dll" exit /b 0
3044 "%CORE_ROOT%\\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" %2 >nul 2>nul
3045 @if "%errorlevel%" == "-2146230517" (
3046 echo %2 is not a managed assembly.
3047 ) else if "%errorlevel%" == "-2146234344" (
3048 echo %2 is not a managed assembly.
3049 ) else if %errorlevel% neq 0 (
3050 echo Unable to precompile %2
3056 :skip_PrecompileAssembly
3059 // Set RunCrossGen variable to cause test wrappers to invoke their logic to run
3060 // crossgen on tests before running them.
3061 addEnvVariable("RunCrossGen", "true")
3062 } // isR2RScenario(scenario)
3065 // Do not run generate layout. It will delete the correct CORE_ROOT, and we do not have a correct product
3066 // dir to copy from.
3067 def runtestCommand = "call %WORKSPACE%\\tests\\runtest.cmd ${architecture} ${configuration} skipgeneratelayout"
3069 addCommand("${runtestCommand}")
3070 addCommand("echo on") // Show the following commands in the log. "echo" doesn't alter the errorlevel.
3071 addCommand("set saved_errorlevel=%errorlevel%")
3073 // Collect the test logs collected by xunit. Ignore errors here. We want to collect these even if the run
3074 // failed for some reason, so it needs to be in this batch file.
3076 addCommand("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${architecture}.${configuration}\\Reports', '.\\bin\\tests\\testReports.zip')\"");
3078 // Use the runtest.cmd errorlevel as the script errorlevel.
3079 addCommand("exit /b %saved_errorlevel%")
3081 batchFile(buildCommands)
3082 } // non-corefx testing
3086 if (!isCoreFxScenario(scenario)) {
3087 def doNotFailIfNothingArchived = true
3088 def archiveOnlyIfSuccessful = false
3089 Utilities.addArchival(newJob, "bin/tests/testReports.zip", "", doNotFailIfNothingArchived, archiveOnlyIfSuccessful)
3091 Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true)
3097 // Create a test job not covered by the "Windows ARM" case that will be used by a flow job.
3098 // E.g., non-Windows tests.
3099 // Returns the newly created job.
3100 def static CreateOtherTestJob(def dslFactory, def project, def branch, def architecture, def os, def configuration, def scenario, def isPR, def inputCoreCLRBuildName)
3102 def lowerConfiguration = configuration.toLowerCase()
3104 def isUbuntuArm64Job = ((os == "Ubuntu16.04") && (architecture == 'arm64'))
3105 def isUbuntuArm32Job = ((os == "Ubuntu") && (architecture == 'arm'))
3106 def isUbuntuArmJob = isUbuntuArm32Job || isUbuntuArm64Job
3108 def doCoreFxTesting = isCoreFxScenario(scenario)
3109 def isPmiAsmDiffsScenario = (scenario == 'pmi_asm_diffs')
3111 def workspaceRelativeFxRootLinux = "_/fx" // only used for CoreFX testing
3113 def osGroup = getOSGroup(os)
3114 def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
3117 def useServerGC = false
3119 // Enable Server GC for Ubuntu PR builds
3120 // REVIEW: why? Does this apply to all architectures? Why only PR?
3121 if (os == 'Ubuntu' && isPR) {
3122 testOpts += ' --useServerGC'
3126 if (isR2RScenario(scenario)) {
3128 testOpts += ' --crossgen --runcrossgentests'
3130 if (scenario == 'r2r_jitstress1') {
3131 testOpts += ' --jitstress=1'
3133 else if (scenario == 'r2r_jitstress2') {
3134 testOpts += ' --jitstress=2'
3136 else if (scenario == 'r2r_jitstress1_tiered') {
3137 testOpts += ' --jitstress=1'
3139 else if (scenario == 'r2r_jitstress2_tiered') {
3140 testOpts += ' --jitstress=2'
3142 else if (scenario == 'r2r_jitstressregs1') {
3143 testOpts += ' --jitstressregs=1'
3145 else if (scenario == 'r2r_jitstressregs2') {
3146 testOpts += ' --jitstressregs=2'
3148 else if (scenario == 'r2r_jitstressregs3') {
3149 testOpts += ' --jitstressregs=3'
3151 else if (scenario == 'r2r_jitstressregs4') {
3152 testOpts += ' --jitstressregs=4'
3154 else if (scenario == 'r2r_jitstressregs8') {
3155 testOpts += ' --jitstressregs=8'
3157 else if (scenario == 'r2r_jitstressregs0x10') {
3158 testOpts += ' --jitstressregs=0x10'
3160 else if (scenario == 'r2r_jitstressregs0x80') {
3161 testOpts += ' --jitstressregs=0x80'
3163 else if (scenario == 'r2r_jitstressregs0x1000') {
3164 testOpts += ' --jitstressregs=0x1000'
3166 else if (scenario == 'r2r_jitminopts') {
3167 testOpts += ' --jitminopts'
3169 else if (scenario == 'r2r_jitforcerelocs') {
3170 testOpts += ' --jitforcerelocs'
3172 else if (scenario == 'r2r_gcstress15') {
3173 testOpts += ' --gcstresslevel=0xF'
3176 else if (scenario == 'jitdiff') {
3177 testOpts += ' --jitdisasm --crossgen'
3179 else if (scenario == 'illink') {
3180 testOpts += ' --link=\$WORKSPACE/linker/linker/bin/netcore_Release/netcoreapp2.0/ubuntu-x64/publish/illink'
3182 else if (isLongGc(scenario)) {
3183 // Long GC tests behave very poorly when they are not
3184 // the only test running (many of them allocate until OOM).
3185 testOpts += ' --sequential'
3187 // A note - runtest.sh does have "--long-gc" and "--gcsimulator" options
3188 // for running long GC and GCSimulator tests, respectively. We don't use them
3189 // here because using a playlist file produces much more readable output on the CI machines
3190 // and reduces running time.
3192 // The Long GC playlist contains all of the tests that are
3193 // going to be run. The GCSimulator playlist contains all of
3194 // the GC simulator tests.
3195 if (scenario == 'longgc') {
3196 testOpts += ' --long-gc --playlist=./tests/longRunningGcTests.txt'
3198 else if (scenario == 'gcsimulator') {
3199 testOpts += ' --gcsimulator --playlist=./tests/gcSimulatorTests.txt'
3202 else if (isGcReliabilityFramework(scenario)) {
3203 testOpts += ' --build-overlay-only'
3205 else if (scenario == 'standalone_gc') {
3206 if (osGroup == 'OSX') {
3207 testOpts += ' --gcname=libclrgc.dylib'
3209 else if (osGroup == 'Linux') {
3210 testOpts += ' --gcname=libclrgc.so'
3213 println("Unexpected OS group: ${osGroup} for os ${os}")
3218 def jobFolder = getJobFolder(scenario)
3219 def newJob = dslFactory.job(Utilities.getFullJobName(project, jobName, isPR, jobFolder)) {
3221 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
3225 // Set up the copies
3227 // Coreclr build we are trying to test
3229 // HACK: the Ubuntu arm64 copyArtifacts Jenkins plug-in is ridiculously slow (45 minutes to
3230 // 1.5 hours for this step). Instead, directly use wget, which is fast (1 minute).
3232 if (!isUbuntuArm64Job) {
3233 copyArtifacts(inputCoreCLRBuildName) {
3234 excludePatterns('**/testResults.xml', '**/*.ni.dll')
3236 buildNumber('${CORECLR_BUILD}')
3241 if (isUbuntuArmJob) {
3242 // Add some useful information to the log file. Ignore return codes.
3243 shell("uname -a || true")
3246 if (isUbuntuArm64Job) {
3247 // Copy the required artifacts directly, using wget, e.g.:
3249 // https://ci.dot.net/job/dotnet_coreclr/job/master/job/arm64_cross_checked_ubuntu16.04_innerloop_prtest/16/artifact/testnativebin.checked.zip
3250 // https://ci.dot.net/job/dotnet_coreclr/job/master/job/arm64_cross_checked_ubuntu16.04_innerloop_prtest/16/artifact/tests.checked.zip
3252 // parameterized as:
3254 // https://ci.dot.net/job/${mungedProjectName}/job/${mungedBranchName}/job/${inputJobName}/${CORECLR_BUILD}/artifact/testnativebin.checked.zip
3255 // https://ci.dot.net/job/${mungedProjectName}/job/${mungedBranchName}/job/${inputJobName}/${CORECLR_BUILD}/artifact/tests.checked.zip
3257 // CoreFX example artifact URLs:
3259 // https://ci.dot.net/job/dotnet_coreclr/job/dev_unix_test_workflow/job/jitstress/job/arm64_cross_checked_ubuntu16.04_corefx_baseline_prtest/1/artifact/_/fx/fxruntime.zip
3260 // https://ci.dot.net/job/dotnet_coreclr/job/dev_unix_test_workflow/job/jitstress/job/arm64_cross_checked_ubuntu16.04_corefx_baseline_prtest/1/artifact/_/fx/fxtests.zip
3262 // Note that the source might be in a "jitstress" folder.
3264 // Use `--progress=dot:giga` to display some progress output, but limit it in the log file.
3266 // Use `--directory-prefix=_/fx` to specify where to put the corefx files (to match what other platforms do). Use this instead of `-O`.
3268 shell("echo \"Using wget instead of the Jenkins copy artifacts plug-in to copy artifacts from ${inputCoreCLRBuildName}\"")
3270 def mungedProjectName = Utilities.getFolderName(project)
3271 def mungedBranchName = Utilities.getFolderName(branch)
3273 def doCrossGenComparison = isCrossGenComparisonScenario(scenario)
3274 def inputCoreCLRBuildScenario = isInnerloopTestScenario(scenario) ? 'innerloop' : 'normal'
3275 if (isPmiAsmDiffsScenario || doCoreFxTesting || doCrossGenComparison) {
3276 // These depend on unique builds for each scenario
3277 inputCoreCLRBuildScenario = scenario
3279 def sourceJobName = getJobName(configuration, architecture, os, inputCoreCLRBuildScenario, false)
3280 def inputJobName = Utilities.getFullJobName(sourceJobName, isPR)
3282 // Need to add the sub-folder if necessary.
3283 def inputJobPath = "job/${inputJobName}"
3284 def folderName = getJobFolder(inputCoreCLRBuildScenario)
3285 if (folderName != '') {
3286 inputJobPath = "job/${folderName}/job/${inputJobName}"
3289 def inputUrlRoot = "https://ci.dot.net/job/${mungedProjectName}/job/${mungedBranchName}/${inputJobPath}/\${CORECLR_BUILD}/artifact"
3291 if (isPmiAsmDiffsScenario) {
3292 def workspaceRelativeRootLinux = "_/pmi"
3293 shell("mkdir -p ${workspaceRelativeRootLinux}")
3294 shell("wget --progress=dot:giga ${inputUrlRoot}/product.${os}.${architecture}.${lowerConfiguration}.zip")
3295 shell("wget --progress=dot:giga ${inputUrlRoot}/product.baseline.${os}.${architecture}.${lowerConfiguration}.zip")
3296 shell("wget --progress=dot:giga ${inputUrlRoot}/coreroot.${os}.${architecture}.${lowerConfiguration}.zip")
3297 shell("wget --progress=dot:giga ${inputUrlRoot}/coreroot.baseline.${os}.${architecture}.${lowerConfiguration}.zip")
3299 else if (doCoreFxTesting) {
3300 shell("mkdir -p ${workspaceRelativeFxRootLinux}")
3301 shell("wget --progress=dot:giga --directory-prefix=${workspaceRelativeFxRootLinux} ${inputUrlRoot}/${workspaceRelativeFxRootLinux}/fxtests.zip")
3302 shell("wget --progress=dot:giga --directory-prefix=${workspaceRelativeFxRootLinux} ${inputUrlRoot}/${workspaceRelativeFxRootLinux}/fxruntime.zip")
3305 def testArtifactsTgzFileName = getTestArtifactsTgzFileName(osGroup, architecture, configuration)
3306 shell("wget --progress=dot:giga ${inputUrlRoot}/${testArtifactsTgzFileName}")
3310 if (architecture == 'x86') {
3311 shell("mkdir ./bin/CoreFxNative")
3313 def fxBranch = getFxBranch(branch)
3314 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(fxBranch)
3316 copyArtifacts("${corefxFolder}/ubuntu16.04_x86_release") {
3317 includePatterns('artifacts/bin/build.tar.gz')
3318 targetDirectory('bin/CoreFxNative')
3320 latestSuccessful(true)
3324 shell("mkdir ./bin/CoreFxBinDir")
3325 shell("tar -xf ./bin/CoreFxNative/artifacts/bin/build.tar.gz -C ./bin/CoreFxBinDir")
3328 if (isPmiAsmDiffsScenario) {
3329 // TODO: add back "-q" when we know it works
3330 shell("unzip -o ./product.${os}.${architecture}.${lowerConfiguration}.zip || exit 0")
3331 shell("unzip -o ./product.baseline.${os}.${architecture}.${lowerConfiguration}.zip || exit 0")
3332 shell("unzip -o ./coreroot.${os}.${architecture}.${lowerConfiguration}.zip || exit 0")
3333 shell("unzip -o ./coreroot.baseline.${os}.${architecture}.${lowerConfiguration}.zip || exit 0")
3335 // CoreFX testing downloads the CoreFX tests, not the coreclr tests. Also, unzip the built CoreFX layout/runtime directories.
3336 else if (doCoreFxTesting) {
3337 shell("unzip -q -o ${workspaceRelativeFxRootLinux}/fxtests.zip || exit 0")
3338 shell("unzip -q -o ${workspaceRelativeFxRootLinux}/fxruntime.zip || exit 0")
3341 def testArtifactsTgzFileName = getTestArtifactsTgzFileName(osGroup, architecture, configuration)
3342 shell("tar -xzf ./${testArtifactsTgzFileName} || exit 0") // extracts to ./bin/tests/${osGroup}.${architecture}.${configuration}
3345 // Execute the tests
3346 def runDocker = isNeedDocker(architecture, os, false)
3347 def dockerPrefix = ""
3350 def dockerImage = getDockerImageName(architecture, os, false)
3351 dockerPrefix = "docker run -i --rm -v \${WORKSPACE}:\${WORKSPACE} -w \${WORKSPACE} "
3352 dockerCmd = dockerPrefix + "${dockerImage} "
3355 // If we are running a stress mode, we'll set those variables first.
3356 // For CoreFX, the stress variables are already built into the CoreFX test build per-test wrappers.
3357 if (!doCoreFxTesting && isJitStressScenario(scenario)) {
3358 def scriptFileName = "\${WORKSPACE}/set_stress_test_env.sh"
3359 def envScriptCmds = envScriptCreate(os, scriptFileName)
3360 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
3361 envScriptCmds += envScriptFinalize(os, scriptFileName)
3362 shell("${envScriptCmds}")
3363 testOpts += " --test-env=${scriptFileName}"
3366 // setup-stress-dependencies.sh, invoked by runtest.sh to download the coredistools package, depends on the "dotnet"
3367 // tool downloaded by the "init-tools.sh" script. However, it only invokes setup-stress-dependencies.sh for x64. The
3368 // coredistools package is used by GCStress on x86 and x64 to disassemble code to determine instruction boundaries.
3369 // On arm/arm64, it is not required as determining instruction boundaries is trivial.
3370 if (isGCStressRelatedTesting(scenario)) {
3371 if (architecture == 'x64') {
3372 shell('./init-tools.sh')
3376 if (isPmiAsmDiffsScenario) {
3378 python -u \${WORKSPACE}/tests/scripts/run-pmi-diffs.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} --skip_baseline_build""")
3380 shell("zip -r dasm.${os}.${architecture}.${configuration}.zip ./_/pmi/asm")
3382 else if (doCoreFxTesting) {
3384 \${WORKSPACE}/tests/scripts/run-corefx-tests.sh --test-exclude-file \${WORKSPACE}/tests/${architecture}/corefx_linux_test_exclusions.txt --runtime \${WORKSPACE}/${workspaceRelativeFxRootLinux}/artifacts/bin/testhost/netcoreapp-Linux-Release-${architecture} --arch ${architecture} --corefx-tests \${WORKSPACE}/${workspaceRelativeFxRootLinux}/artifacts/bin --configurationGroup Release""")
3387 def runScript = "${dockerCmd}./tests/runtest.sh"
3391 ${lowerConfiguration} \\
3392 --testRootDir=\"\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}\" \\
3393 --coreOverlayDir=\"\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root\" \\
3394 --limitedDumpGeneration ${testOpts}""")
3397 if (isGcReliabilityFramework(scenario)) {
3398 // runtest.sh doesn't actually execute the reliability framework - do it here.
3401 dockerCmd = dockerPrefix + "-e COMPlus_gcServer=1 ${dockerImage} "
3404 shell("export COMPlus_gcServer=1")
3408 shell("${dockerCmd}./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")
3413 // Experimental: If on Ubuntu 14.04, then attempt to pull in crash dump links
3414 if (os in ['Ubuntu']) {
3415 SummaryBuilder summaries = new SummaryBuilder()
3416 summaries.addLinksSummaryFromFile('Crash dumps from this run:', 'dumplings.txt')
3417 summaries.emit(newJob)
3420 if (isPmiAsmDiffsScenario) {
3422 Utilities.addArchival(newJob, "dasm.${os}.${architecture}.${configuration}.zip")
3424 else if (doCoreFxTesting) {
3425 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/artifacts/bin/**/testResults.xml")
3426 if ((os == "Ubuntu") && (architecture == 'arm')) {
3427 // We have a problem with the xunit plug-in, where it is consistently failing on Ubuntu arm32 test result uploading with this error:
3429 // [xUnit] [ERROR] - The plugin hasn't been performed correctly: remote file operation failed: /ssd/j/workspace/dotnet_coreclr/master/jitstress/arm_cross_checked_ubuntu_corefx_baseline_tst at hudson.remoting.Channel@3697f46d:JNLP4-connect connection from 131.107.159.149/131.107.159.149:58529: java.io.IOException: Remote call on JNLP4-connect connection from 131.107.159.149/131.107.159.149:58529 failed
3431 // We haven't been able to identify the reason. So, do not add xunit parsing of the test data in this scenario.
3432 // This is tracked by: https://github.com/dotnet/coreclr/issues/19447.
3435 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRootLinux}/artifacts/bin/**/testResults.xml")
3439 Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml')
3445 def static CreateNonWindowsCrossGenComparisonTestJob(def dslFactory, def project, def architecture, def os, def configuration, def scenario, def isPR, def inputCoreCLRBuildName)
3447 assert isCrossGenComparisonScenario(scenario)
3449 def osGroup = getOSGroup(os)
3450 def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
3452 def workspaceRelativeResultsDir = "_"
3453 def workspaceRelativeNativeArchResultDir = "${workspaceRelativeResultsDir}/${osGroup}.${architecture}_${architecture}.${configuration}"
3455 def crossArch = "x64"
3456 def workspaceRelativeCrossArchResultDir = "${workspaceRelativeResultsDir}/${osGroup}.${crossArch}_${architecture}.${configuration}"
3458 def jobFolder = getJobFolder(scenario)
3459 def newJob = dslFactory.job(Utilities.getFullJobName(project, jobName, isPR, jobFolder)) {
3461 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
3464 def workspaceRelativeArtifactsArchive = "${os}.${architecture}.${configuration}.${scenario}.zip"
3467 copyArtifacts(inputCoreCLRBuildName) {
3468 includePatterns("${workspaceRelativeArtifactsArchive}")
3470 buildNumber('${CORECLR_BUILD}')
3474 shell("unzip -o ${workspaceRelativeArtifactsArchive} || exit 0")
3476 def workspaceRelativeCoreLib = "bin/Product/${osGroup}.${architecture}.${configuration}/IL/System.Private.CoreLib.dll"
3477 def workspaceRelativeCoreRootDir = "bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root"
3478 def workspaceRelativeCrossGenComparisonScript = "tests/scripts/crossgen_comparison.py"
3479 def workspaceRelativeCrossGenExecutable = "${workspaceRelativeCoreRootDir}/crossgen"
3481 def crossGenComparisonCmd = "python -u \${WORKSPACE}/${workspaceRelativeCrossGenComparisonScript} "
3482 def crossGenExecutable = "\${WORKSPACE}/${workspaceRelativeCrossGenExecutable}"
3484 shell("mkdir -p ${workspaceRelativeNativeArchResultDir}")
3485 shell("${crossGenComparisonCmd}crossgen_corelib --crossgen ${crossGenExecutable} --il_corelib \${WORKSPACE}/${workspaceRelativeCoreLib} --result_dir \${WORKSPACE}/${workspaceRelativeNativeArchResultDir}")
3486 shell("${crossGenComparisonCmd}crossgen_framework --crossgen ${crossGenExecutable} --core_root \${WORKSPACE}/${workspaceRelativeCoreRootDir} --result_dir \${WORKSPACE}/${workspaceRelativeNativeArchResultDir}")
3488 shell("${crossGenComparisonCmd}compare --base_dir \${WORKSPACE}/${workspaceRelativeNativeArchResultDir} --diff_dir \${WORKSPACE}/${workspaceRelativeCrossArchResultDir}")
3492 Utilities.addArchival(newJob, "${workspaceRelativeNativeArchResultDir}/**")
3493 Utilities.addArchival(newJob, "${workspaceRelativeCrossArchResultDir}/**")
3498 // Create a test job that will be used by a flow job.
3499 // Returns the newly created job.
3500 // Note that we don't add tests jobs to the various views, since they are always used by a flow job, which is in the views,
3501 // and we want the views to be the minimal set of "top-level" jobs that represent all work.
3502 def static CreateTestJob(def dslFactory, def project, def branch, def architecture, def os, def configuration, def scenario, def isPR, def inputCoreCLRBuildName)
3504 def windowsArmJob = ((os == "Windows_NT") && (architecture in Constants.armWindowsCrossArchitectureList))
3507 if (windowsArmJob) {
3508 newJob = CreateWindowsArmTestJob(dslFactory, project, architecture, os, configuration, scenario, isPR, inputCoreCLRBuildName)
3510 else if (isCrossGenComparisonScenario(scenario)) {
3511 newJob = CreateNonWindowsCrossGenComparisonTestJob(dslFactory, project, architecture, os, configuration, scenario, isPR, inputCoreCLRBuildName)
3514 newJob = CreateOtherTestJob(dslFactory, project, branch, architecture, os, configuration, scenario, isPR, inputCoreCLRBuildName)
3517 setJobMachineAffinity(architecture, os, false, true, false, newJob) // isBuildJob = false, isTestJob = true, isFlowJob = false
3519 if (scenario == 'jitdiff') {
3520 def osGroup = getOSGroup(os)
3521 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/dasm/**")
3524 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
3525 setJobTimeout(newJob, isPR, architecture, configuration, scenario, false)
3530 // Create a flow job to tie together a build job with the given test job.
3531 // Returns the new flow job.
3532 def static CreateFlowJob(def dslFactory, def project, def branch, def architecture, def os, def configuration, def scenario, def isPR, def fullTestJobName, def inputCoreCLRBuildName)
3534 // Windows CoreCLR build and Linux CoreCLR build (in parallel) ->
3535 // Linux CoreCLR test
3536 def flowJobName = getJobName(configuration, architecture, os, scenario, false) + "_flow"
3537 def jobFolder = getJobFolder(scenario)
3539 def newFlowJob = dslFactory.buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, jobFolder)) {
3541 coreclrBuildJob = build(params, '${inputCoreCLRBuildName}')
3543 // And then build the test build
3544 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number], '${fullTestJobName}')
3547 JobReport.Report.addReference(inputCoreCLRBuildName)
3548 JobReport.Report.addReference(fullTestJobName)
3550 addToViews(newFlowJob, true, isPR, architecture, os, configuration, scenario) // isFlowJob = true
3552 setJobMachineAffinity(architecture, os, false, false, true, newFlowJob) // isBuildJob = false, isTestJob = false, isFlowJob = true
3554 Utilities.standardJobSetup(newFlowJob, project, isPR, "*/${branch}")
3555 addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false) // isFlowJob==true, isWindowsBuildOnlyJob==false
3560 // Determine if we should generate a flow job for the given parameters.
3561 // Returns true if the job should be generated.
3562 def static shouldGenerateFlowJob(def scenario, def isPR, def architecture, def configuration, def os)
3564 // The various "innerloop" jobs are only available as PR triggered.
3567 if (isInnerloopTestScenario(scenario)) {
3571 if (scenario == 'corefx_innerloop') {
3576 // Filter based on OS and architecture.
3578 switch (architecture) {
3580 if (os != "Ubuntu" && os != "Windows_NT") {
3585 if (os != "Ubuntu16.04" && os != "Windows_NT") {
3590 if (os != "Ubuntu") {
3595 if (!(os in Constants.crossList)) {
3598 if (os == "Windows_NT") {
3606 println("Unknown architecture: ${architecture}")
3611 def isNormalOrInnerloop = (scenario == 'innerloop' || scenario == 'normal')
3613 // Filter based on scenario in OS.
3615 if (os == 'Windows_NT') {
3616 assert architecture == 'arm' || architecture == 'arm64'
3617 if (!isArmWindowsScenario(scenario)) {
3620 if (isNormalOrInnerloop && (configuration == 'Debug')) {
3621 // The arm32/arm64 Debug configuration for innerloop/normal scenario is a special case: it does a build only, and no test run.
3622 // To do that, it doesn't require a flow job.
3628 if (architecture == 'arm') {
3629 if (!(scenario in Constants.validLinuxArmScenarios)) {
3633 else if (architecture == 'arm64') {
3634 if (!(scenario in Constants.validLinuxArm64Scenarios)) {
3638 else if (architecture == 'x86') {
3639 // Linux/x86 only want innerloop and default test
3640 if (!isNormalOrInnerloop) {
3644 else if (architecture == 'x64') {
3645 // Linux/x64 corefx testing doesn't need a flow job; the "build" job runs run-corefx-tests.py which
3646 // builds and runs the corefx tests. Other Linux/x64 flow jobs are required to get the test
3647 // build from a Windows machine.
3648 if (isCoreFxScenario(scenario)) {
3654 // For CentOS, we only want Checked/Release builds.
3655 if (os == 'CentOS7.1') {
3656 if (configuration != 'Checked' && configuration != 'Release') {
3659 if (!isNormalOrInnerloop && !isR2RScenario(scenario)) {
3664 // For RedHat and Debian, we only do Release builds.
3665 else if (os == 'RHEL7.2' || os == 'Debian8.4') {
3666 if (configuration != 'Release') {
3669 if (!isNormalOrInnerloop) {
3674 // Next, filter based on scenario.
3676 if (isJitStressScenario(scenario)) {
3677 if (configuration != 'Checked') {
3681 else if (isR2RBaselineScenario(scenario)) {
3682 if (configuration != 'Checked' && configuration != 'Release') {
3686 else if (isR2RStressScenario(scenario)) {
3687 if (configuration != 'Checked') {
3691 else if (isCrossGenComparisonScenario(scenario)) {
3692 return shouldGenerateCrossGenComparisonJob(os, architecture, configuration, scenario)
3700 // Long GC tests take a long time on non-Release builds
3701 // ilrt is also Release only
3702 if (configuration != 'Release') {
3708 if (configuration != 'Checked') {
3713 case 'gc_reliability_framework':
3714 case 'standalone_gc':
3715 if (configuration != 'Release' && configuration != 'Checked') {
3724 if (os != 'Windows_NT' && os != 'Ubuntu') {
3734 if (!isValidPrTriggeredInnerLoopJob(os, architecture, configuration, false)) {
3739 case 'pmi_asm_diffs':
3740 if (configuration != 'Checked') {
3743 // No need for flow job except for Linux arm/arm64
3744 if ((os != 'Windows_NT') && (architecture != 'arm') && (architecture != 'arm64')) {
3749 case 'corefx_innerloop':
3750 // No flow job needed
3754 println("Unknown scenario: ${scenario}")
3760 // The job was not filtered out, so we should generate it!
3764 // Create jobs requiring flow jobs. This includes x64 non-Windows, arm/arm64 Ubuntu, and arm/arm64 Windows.
3765 Constants.allScenarios.each { scenario ->
3766 [true, false].each { isPR ->
3767 Constants.architectureList.each { architecture ->
3768 Constants.configurationList.each { configuration ->
3769 Constants.osList.each { os ->
3771 if (!shouldGenerateFlowJob(scenario, isPR, architecture, configuration, os)) {
3775 def windowsArmJob = ((os == "Windows_NT") && (architecture in Constants.armWindowsCrossArchitectureList))
3776 def doCoreFxTesting = isCoreFxScenario(scenario)
3777 def doCrossGenComparison = isCrossGenComparisonScenario(scenario)
3778 def isPmiAsmDiffsScenario = (scenario == 'pmi_asm_diffs')
3780 // Figure out the job name of the CoreCLR build the test will depend on.
3782 def inputCoreCLRBuildScenario = isInnerloopTestScenario(scenario) ? 'innerloop' : 'normal'
3783 def inputCoreCLRBuildIsBuildOnly = false
3784 if (doCoreFxTesting || isPmiAsmDiffsScenario) {
3785 // Every CoreFx test depends on its own unique build.
3786 inputCoreCLRBuildScenario = scenario
3787 if (windowsArmJob) {
3788 // Only Windows ARM corefx jobs use "build only" jobs. Others, such as Ubuntu ARM corefx, use "regular" jobs.
3789 inputCoreCLRBuildIsBuildOnly = true
3792 else if (doCrossGenComparison) {
3793 inputCoreCLRBuildScenario = scenario
3796 def inputCoreCLRFolderName = getJobFolder(inputCoreCLRBuildScenario)
3797 def inputCoreCLRBuildName = projectFolder + '/' +
3798 Utilities.getFullJobName(project, getJobName(configuration, architecture, os, inputCoreCLRBuildScenario, inputCoreCLRBuildIsBuildOnly), isPR, inputCoreCLRFolderName)
3800 // =============================================================================================
3801 // Create the test job
3802 // =============================================================================================
3804 def testJob = CreateTestJob(this, project, branch, architecture, os, configuration, scenario, isPR, inputCoreCLRBuildName)
3806 // =============================================================================================
3807 // Create a build flow to join together the build and tests required to run this test.
3808 // =============================================================================================
3810 if (os == 'RHEL7.2' || os == 'Debian8.4') {
3811 // Do not create the flow job for RHEL jobs.
3815 def fullTestJobName = projectFolder + '/' + testJob.name
3816 def flowJob = CreateFlowJob(this, project, branch, architecture, os, configuration, scenario, isPR, fullTestJobName, inputCoreCLRBuildName)
3824 JobReport.Report.generateJobReport(out)
3826 // Make the call to generate the help job
3827 Utilities.createHelperJob(this, project, branch,
3828 "Welcome to the ${project} Repository", // This is prepended to the help message
3829 "Have a nice day!") // This is appended to the help message. You might put known issues here.
3831 Utilities.addCROSSCheck(this, project, branch)