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',
22 'Ubuntu16.04': 'Linux',
23 'Ubuntu16.10': 'Linux',
27 '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 ARM64 hardware (used for ARM/ARMLB/ARM64 testing). So only allow certain branches to use it.
39 def static WindowsArm64Branches = [
42 // Innerloop build OS's
43 // The Windows_NT_BuildOnly OS is a way to speed up the Non-Windows builds by avoiding
44 // test execution in the build flow runs. It generates the exact same build
45 // as Windows_NT but without running the tests.
51 'Windows_NT_BuildOnly',
59 def static crossList = ['Ubuntu', 'OSX10.12', 'CentOS7.1', 'RHEL7.2', 'Debian8.4', 'Windows_NT']
61 // This is a set of JIT stress modes combined with the set of variables that
62 // need to be set to actually enable that stress mode. The key of the map is the stress mode and
63 // the values are the environment variables
64 def static jitStressModeScenarios = [
65 'minopts' : ['COMPlus_JITMinOpts' : '1'],
66 'tieredcompilation' : ['COMPlus_EXPERIMENTAL_TieredCompilation' : '1'],
67 'forcerelocs' : ['COMPlus_ForceRelocs' : '1'],
68 'jitstress1' : ['COMPlus_JitStress' : '1'],
69 'jitstress2' : ['COMPlus_JitStress' : '2'],
70 'jitstressregs1' : ['COMPlus_JitStressRegs' : '1'],
71 'jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
72 'jitstressregs3' : ['COMPlus_JitStressRegs' : '3'],
73 'jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
74 'jitstressregs8' : ['COMPlus_JitStressRegs' : '8'],
75 'jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
76 'jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
77 'jitstressregs0x1000' : ['COMPlus_JitStressRegs' : '0x1000'],
78 'jitstress2_jitstressregs1' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '1'],
79 'jitstress2_jitstressregs2' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '2'],
80 'jitstress2_jitstressregs3' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '3'],
81 'jitstress2_jitstressregs4' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '4'],
82 'jitstress2_jitstressregs8' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '8'],
83 'jitstress2_jitstressregs0x10' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x10'],
84 'jitstress2_jitstressregs0x80' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x80'],
85 'jitstress2_jitstressregs0x1000' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x1000'],
86 'tailcallstress' : ['COMPlus_TailcallStress' : '1'],
87 'jitsse2only' : ['COMPlus_EnableAVX' : '0', 'COMPlus_EnableSSE3_4' : '0'],
88 'jitnosimd' : ['COMPlus_FeatureSIMD' : '0'],
89 'jitincompletehwintrinsic' : ['COMPlus_EnableIncompleteISAClass' : '1'],
90 'jitx86hwintrinsicnoavx' : ['COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_EnableAVX' : '0'], // testing the legacy SSE encoding
91 'jitx86hwintrinsicnoavx2' : ['COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_EnableAVX2' : '0'], // testing SNB/IVB
92 'jitx86hwintrinsicnosimd' : ['COMPlus_EnableIncompleteISAClass' : '1', 'COMPlus_FeatureSIMD' : '0'], // match "jitnosimd", may need to remove after decoupling HW intrinsic from FeatureSIMD
93 'jitnox86hwintrinsic' : ['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'],
94 'corefx_baseline' : [ : ], // corefx baseline
95 'corefx_minopts' : ['COMPlus_JITMinOpts' : '1'],
96 'corefx_tieredcompilation' : ['COMPlus_EXPERIMENTAL_TieredCompilation' : '1'],
97 'corefx_jitstress1' : ['COMPlus_JitStress' : '1'],
98 'corefx_jitstress2' : ['COMPlus_JitStress' : '2'],
99 'corefx_jitstressregs1' : ['COMPlus_JitStressRegs' : '1'],
100 'corefx_jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
101 'corefx_jitstressregs3' : ['COMPlus_JitStressRegs' : '3'],
102 'corefx_jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
103 'corefx_jitstressregs8' : ['COMPlus_JitStressRegs' : '8'],
104 'corefx_jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
105 'corefx_jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
106 'corefx_jitstressregs0x1000' : ['COMPlus_JitStressRegs' : '0x1000'],
107 'gcstress0x3' : ['COMPlus_GCStress' : '0x3'],
108 'gcstress0xc' : ['COMPlus_GCStress' : '0xC'],
109 'zapdisable' : ['COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
110 'heapverify1' : ['COMPlus_HeapVerify' : '1'],
111 'gcstress0xc_zapdisable' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
112 'gcstress0xc_zapdisable_jitstress2' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_JitStress' : '2'],
113 'gcstress0xc_zapdisable_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_HeapVerify' : '1'],
114 'gcstress0xc_jitstress1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '1'],
115 'gcstress0xc_jitstress2' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '2'],
116 'gcstress0xc_minopts_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JITMinOpts' : '1', 'COMPlus_HeapVerify' : '1']
119 // This is a set of ReadyToRun stress scenarios
120 def static r2rStressScenarios = [
121 'r2r_jitstress1' : ["COMPlus_JitStress": "1"],
122 'r2r_jitstress2' : ["COMPlus_JitStress": "2"],
123 'r2r_jitstressregs1' : ["COMPlus_JitStressRegs": "1"],
124 'r2r_jitstressregs2' : ["COMPlus_JitStressRegs": "2"],
125 'r2r_jitstressregs3' : ["COMPlus_JitStressRegs": "3"],
126 'r2r_jitstressregs4' : ["COMPlus_JitStressRegs": "4"],
127 'r2r_jitstressregs8' : ["COMPlus_JitStressRegs": "8"],
128 'r2r_jitstressregs0x10' : ["COMPlus_JitStressRegs": "0x10"],
129 'r2r_jitstressregs0x80' : ["COMPlus_JitStressRegs": "0x80"],
130 'r2r_jitstressregs0x1000' : ["COMPlus_JitStressRegs": "0x1000"],
131 'r2r_jitminopts' : ["COMPlus_JITMinOpts": "1"],
132 'r2r_jitforcerelocs' : ["COMPlus_ForceRelocs": "1"],
133 'r2r_gcstress15' : ["COMPlus_GCStress": "0xF"]
136 // This is the basic set of scenarios
137 def static basicScenarios = [
145 // 'jitdiff', // jitdiff is currently disabled, until someone spends the effort to make it fully work
147 'gc_reliability_framework',
150 def static allScenarios = basicScenarios + r2rStressScenarios.keySet() + jitStressModeScenarios.keySet()
152 // Valid PR trigger combinations.
153 def static prTriggeredValidInnerLoopCombos = [
172 'Windows_NT_buildOnly': [
208 // A set of scenarios that are valid for arm/arm64/armlb tests run on hardware. This is a map from valid scenario name
209 // to Tests.lst file categories to exclude.
211 // This list should contain a subset of the scenarios from `allScenarios`. Please keep this in the same order as that,
212 // and with the same values, with some commented out, for easier maintenance.
214 // Note that some scenarios that are commented out should be enabled, but haven't yet been.
216 def static validArmWindowsScenarios = [
220 'r2r': ["R2R_FAIL", "R2R_EXCLUDE"],
226 // 'gc_reliability_framework'
228 'r2r_jitstress1': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
229 'r2r_jitstress2': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
230 'r2r_jitstressregs1': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
231 'r2r_jitstressregs2': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
232 'r2r_jitstressregs3': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
233 'r2r_jitstressregs4': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
234 'r2r_jitstressregs8': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
235 'r2r_jitstressregs0x10': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
236 'r2r_jitstressregs0x80': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
237 'r2r_jitstressregs0x1000': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
238 'r2r_jitminopts': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE", "MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
239 'r2r_jitforcerelocs': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
240 'r2r_gcstress15': ["R2R_FAIL", "R2R_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE", "GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
241 'minopts': ["MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
242 'tieredcompilation': [],
244 'jitstress1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
245 'jitstress2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
246 'jitstressregs1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
247 'jitstressregs2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
248 'jitstressregs3': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
249 'jitstressregs4': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
250 'jitstressregs8': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
251 'jitstressregs0x10': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
252 'jitstressregs0x80': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
253 'jitstressregs0x1000': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
254 'jitstress2_jitstressregs1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
255 'jitstress2_jitstressregs2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
256 'jitstress2_jitstressregs3': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
257 'jitstress2_jitstressregs4': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
258 'jitstress2_jitstressregs8': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
259 'jitstress2_jitstressregs0x10': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
260 'jitstress2_jitstressregs0x80': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
261 'jitstress2_jitstressregs0x1000': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
262 'tailcallstress': ["TAILCALLSTRESS_FAIL", "TAILCALLSTRESS_EXCLUDE"],
263 // 'jitsse2only' // Only relevant to xarch
264 'jitnosimd': [], // Only interesting on platforms where SIMD support exists.
265 // 'jitincompletehwintrinsic'
266 // 'jitx86hwintrinsicnoavx'
267 // 'jitx86hwintrinsicnoavx2'
268 // 'jitx86hwintrinsicnosimd'
269 // 'jitnox86hwintrinsic'
270 'corefx_baseline': [], // corefx tests don't use smarty
271 'corefx_minopts': [], // corefx tests don't use smarty
272 'corefx_tieredcompilation': [], // corefx tests don't use smarty
273 'corefx_jitstress1': [], // corefx tests don't use smarty
274 'corefx_jitstress2': [], // corefx tests don't use smarty
275 'corefx_jitstressregs1': [], // corefx tests don't use smarty
276 'corefx_jitstressregs2': [], // corefx tests don't use smarty
277 'corefx_jitstressregs3': [], // corefx tests don't use smarty
278 'corefx_jitstressregs4': [], // corefx tests don't use smarty
279 'corefx_jitstressregs8': [], // corefx tests don't use smarty
280 'corefx_jitstressregs0x10': [], // corefx tests don't use smarty
281 'corefx_jitstressregs0x80': [], // corefx tests don't use smarty
282 'corefx_jitstressregs0x1000': [], // corefx tests don't use smarty
283 'gcstress0x3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
284 'gcstress0xc': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
285 'zapdisable': ["ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
287 'gcstress0xc_zapdisable': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
288 'gcstress0xc_zapdisable_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
289 'gcstress0xc_zapdisable_heapverify1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
290 'gcstress0xc_jitstress1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
291 'gcstress0xc_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
292 'gcstress0xc_minopts_heapverify1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
295 // NOTE: the following scenarios are not defined in the 'allScenarios' list! Is this a bug?
298 'minopts_zapdisable': ["ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE", "MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
299 'gcstress0x3_jitstress1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
300 'gcstress0x3_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
301 'gcstress0x3_jitstressregs1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
302 'gcstress0x3_jitstressregs2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
303 'gcstress0x3_jitstressregs3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
304 'gcstress0x3_jitstressregs4': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
305 'gcstress0x3_jitstressregs8': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
306 'gcstress0x3_jitstressregs0x10': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
307 'gcstress0x3_jitstressregs0x80': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
308 'gcstress0x3_jitstressregs0x1000': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
309 'gcstress0xc_jitstressregs1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
310 'gcstress0xc_jitstressregs2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
311 'gcstress0xc_jitstressregs3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
312 'gcstress0xc_jitstressregs4': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
313 'gcstress0xc_jitstressregs8': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
314 'gcstress0xc_jitstressregs0x10': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
315 'gcstress0xc_jitstressregs0x80': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
316 'gcstress0xc_jitstressregs0x1000': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"]
319 def static validLinuxArm64Scenarios = [
327 def static configurationList = ['Debug', 'Checked', 'Release']
329 // This is the set of architectures
330 def static architectureList = ['arm', 'armlb', 'x86_arm_altjit', 'x64_arm64_altjit', 'arm64', 'x64', 'x86']
333 // **************************************************************
334 // Create some specific views
336 // These aren't using the Utilities.addStandardFolderView() function, because that creates
337 // views based on a single regular expression. These views will be generated by adding a
338 // specific set of jobs to them.
340 // Utilities.addStandardFolderView() also creates a lot of additional stuff around the
341 // view, like "Build Statistics", "Job Statistics", "Unstable Jobs". Until it is determined
342 // those are required, don't add them (which simplifies the view pages, as well).
343 // **************************************************************
346 def static MergeJobView = null
347 def static PeriodicJobView = null
348 def static ArchitectureViews = [:]
349 def static OSViews = [:]
352 // MergeJobView: include all jobs that execute when a PR change is merged.
353 Views.MergeJobView = listView('Merge') {
366 // PeriodicJobView: include all jobs that execute on a schedule
367 Views.PeriodicJobView = listView('Periodic') {
380 // Create a view for non-PR jobs for each architecture.
381 Constants.architectureList.each { architecture ->
382 Views.ArchitectureViews[architecture] = listView(architecture) {
396 // Create a view for non-PR jobs for each OS.
397 Constants.osList.each { os ->
398 // Don't create one for the special 'Windows_NT_BuildOnly'
399 if (os == 'Windows_NT_BuildOnly') {
402 Views.OSViews[os] = listView(os) {
416 def static addToMergeView(def job) {
417 Views.MergeJobView.with {
424 def static addToPeriodicView(def job) {
425 Views.PeriodicJobView.with {
432 def static addToViews(def job, def isPR, def architecture, def os) {
434 // No views want PR jobs currently.
438 // Add to architecture view.
439 Views.ArchitectureViews[architecture].with {
446 Views.OSViews[os].with {
453 def static addPeriodicTriggerHelper(def job, String cronString, boolean alwaysRuns = false) {
454 addToPeriodicView(job)
455 Utilities.addPeriodicTrigger(job, cronString, alwaysRuns)
458 def static addGithubPushTriggerHelper(def job) {
460 Utilities.addGithubPushTrigger(job)
464 def static setMachineAffinity(def job, def os, def architecture, def options = null) {
465 assert os instanceof String
466 assert architecture instanceof String
468 def armArches = ['arm', 'armlb', 'arm64']
469 def supportedArmLinuxOs = ['Ubuntu', 'Ubuntu16.04', 'Tizen']
471 if (!(architecture in armArches)) {
472 assert options == null
473 Utilities.setMachineAffinity(job, os, 'latest-or-auto')
478 // This is an arm(64) job.
480 // There are several options.
484 // Arm32 (Build) -> latest-arm64
485 // |-> os == "Windows_NT" && architecture == "arm" || architecture == "armlb" && options['use_arm64_build_machine'] == true
486 // Arm32 (Test) -> arm64-windows_nt
487 // |-> os == "Windows_NT" && architecture == "arm" || architecture == "armlb" && options['use_arm64_build_machine'] == false
489 // Arm64 (Build) -> latest-arm64
490 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == true
491 // Arm64 (Test) -> arm64-windows_nt
492 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == false
496 // Arm32 (Build) -> arm-cross-latest
497 // |-> os in supportedArmLinuxOs && architecture == "arm" || architecture == "armlb"
498 // Arm32 (Test) -> NYI Arch not supported
501 // Arm64 (Build) -> arm64-cross-latest
502 // |-> os != "Windows_NT" && architecture == "arm64" && options['is_build_only'] == true
503 // Arm64 Small Page Size (Test) -> arm64-small-page-size
504 // |-> os != "Windows_NT" && architecture == "arm64" && options['large_pages'] == false
505 // Arm64 Large Page Size (Test) -> arm64-huge-page-size
506 // |-> os != "Windows_NT" && architecture == "arm64" && options['large_pages'] == true
508 // This has to be a arm arch
509 assert architecture in armArches
510 if (os == "Windows_NT") {
511 // Arm(64) Windows jobs share the same machines for now
512 def isBuild = options['use_arm64_build_machine'] == true
514 if (isBuild == true) {
515 Utilities.setMachineAffinity(job, os, 'latest-arm64')
517 Utilities.setMachineAffinity(job, os, 'arm64-windows_nt')
520 assert os != 'Windows_NT'
521 assert os in supportedArmLinuxOs
523 if (architecture == 'arm' || architecture == 'armlb') {
524 Utilities.setMachineAffinity(job, 'Ubuntu', 'arm-cross-latest')
527 if (options['is_build_only'] == true) {
528 Utilities.setMachineAffinity(job, os, 'arm64-cross-latest')
530 // Arm64 Test Machines
531 if (options['large_pages'] == false) {
532 Utilities.setMachineAffinity(job, os, 'arm64-small-page-size')
534 Utilities.setMachineAffinity(job, os, 'arm64-huge-page-size')
541 def static isGCStressRelatedTesting(def scenario) {
542 // The 'r2r_gcstress15' scenario is a basic scenario.
543 // Detect it and make it a GCStress related.
544 if (scenario == 'r2r_gcstress15')
549 def gcStressTestEnvVars = [ 'COMPlus_GCStress', 'COMPlus_ZapDisable', 'COMPlus_HeapVerify']
550 def scenarioName = scenario.toLowerCase()
551 def isGCStressTesting = false
552 Constants.jitStressModeScenarios[scenario].each{ k, v ->
553 if (k in gcStressTestEnvVars) {
554 isGCStressTesting = true;
557 return isGCStressTesting
560 def static isCoreFxScenario(def scenario) {
561 def corefx_prefix = 'corefx_'
562 if (scenario.length() < corefx_prefix.length()) {
565 return scenario.substring(0,corefx_prefix.length()) == corefx_prefix
568 def static isR2RBaselineScenario(def scenario) {
569 return (scenario == 'r2r')
572 def static isR2RStressScenario(def scenario) {
573 return Constants.r2rStressScenarios.containsKey(scenario)
576 def static isR2RScenario(def scenario) {
577 return isR2RBaselineScenario(scenario) || isR2RStressScenario(scenario)
580 def static isJitStressScenario(def scenario) {
581 return Constants.jitStressModeScenarios.containsKey(scenario)
584 def static isLongGc(def scenario) {
585 return (scenario == 'longgc' || scenario == 'gcsimulator')
588 def static isJitDiff(def scenario) {
589 return (scenario == 'jitdiff')
592 def static isGcReliabilityFramework(def scenario) {
593 return (scenario == 'gc_reliability_framework')
596 def static isArmWindowsScenario(def scenario) {
597 return Constants.validArmWindowsScenarios.containsKey(scenario)
600 def static isValidPrTriggeredInnerLoopJob(os, architecture, configuration, isBuildOnly) {
601 if (isBuildOnly == true) {
602 os = 'Windows_NT_buildOnly'
605 def validOsPrTriggerArchConfigs = Constants.prTriggeredValidInnerLoopCombos[os]
607 if (validOsPrTriggerArchConfigs == null) {
611 if (validOsPrTriggerArchConfigs[architecture] != null) {
612 def validOsPrTriggerConfigs = validOsPrTriggerArchConfigs[architecture]
614 if (!(configuration in validOsPrTriggerConfigs)) {
624 def static setJobTimeout(newJob, isPR, architecture, configuration, scenario, isBuildOnly) {
625 // 2 hours (120 minutes) is the default timeout
627 def innerLoop = (scenario == "innerloop")
630 // Pri-1 test builds take a long time. Default PR jobs are Pri-0; everything else is Pri-1
631 // (see calculateBuildCommands()). So up the Pri-1 build jobs timeout.
636 // Note that these can only increase, never decrease, the Pri-1 timeout possibly set above.
637 if (isGCStressRelatedTesting(scenario)) {
640 else if (isCoreFxScenario(scenario)) {
643 else if (isJitStressScenario(scenario)) {
646 else if (isR2RBaselineScenario(scenario)) {
649 else if (isLongGc(scenario)) {
652 else if (isJitDiff(scenario)) {
655 else if (isGcReliabilityFramework(scenario)) {
658 else if (architecture == 'arm' || architecture == 'armlb' || architecture == 'arm64') {
663 if (configuration == 'Debug') {
664 // Debug runs can be very slow. Add an hour.
668 // If we've changed the timeout from the default, set it in the job.
670 if (timeout != 120) {
671 Utilities.setJobTimeout(newJob, timeout)
675 def static getJobFolder(def scenario) {
676 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
679 if (scenario == 'illink') {
685 def static getStressModeDisplayName(def scenario) {
687 Constants.jitStressModeScenarios[scenario].each{ k, v ->
688 def prefixLength = 'COMPlus_'.length()
689 if (k.length() >= prefixLength) {
690 def modeName = k.substring(prefixLength, k.length())
691 displayStr += ' ' + modeName + '=' + v
695 if (isCoreFxScenario(scenario)) {
696 displayStr = ('CoreFx ' + displayStr).trim()
702 def static getR2RDisplayName(def scenario) {
703 // Assume the scenario name is one from the r2rStressScenarios dict, and remove its "r2r_" prefix.
704 def displayStr = scenario
705 def prefixLength = 'r2r_'.length()
706 if (displayStr.length() >= prefixLength) {
707 displayStr = "R2R " + displayStr.substring(prefixLength, displayStr.length())
708 } else if (scenario == 'r2r') {
715 // Functions to create an environment script.
716 // envScriptCreate -- initialize the script (call first)
717 // envScriptFinalize -- finalize the script (call last)
718 // envScriptSetStressModeVariables -- set stress mode variables in the env script
719 // envScriptAppendExistingScript -- append an existing script to the generated script
721 // Each script returns a string of commands. Concatenate all the strings together before
722 // adding them to the builds commands, to make sure they get executed as one Jenkins script.
725 // Initialize the environment setting script.
726 def static envScriptCreate(def os, def stepScriptLocation) {
728 if (os == 'Windows_NT') {
729 stepScript += "echo Creating TestEnv script\r\n"
730 stepScript += "if exist ${stepScriptLocation} del ${stepScriptLocation}\r\n"
732 // Create at least an empty script.
733 stepScript += "echo. > ${stepScriptLocation}\r\n"
736 stepScript += "echo Creating environment setting script\n"
737 stepScript += "echo \\#\\!/usr/bin/env bash > ${stepScriptLocation}\n"
743 // Generates the string for setting stress mode variables.
744 def static envScriptSetStressModeVariables(def os, def stressModeVars, def stepScriptLocation) {
746 if (os == 'Windows_NT') {
747 stressModeVars.each{ k, v ->
748 // Write out what we are writing to the script file
749 stepScript += "echo Setting ${k}=${v}\r\n"
750 // Write out the set itself to the script file`
751 stepScript += "echo set ${k}=${v} >> ${stepScriptLocation}\r\n"
755 stressModeVars.each{ k, v ->
756 // Write out what we are writing to the script file
757 stepScript += "echo Setting ${k}=${v}\n"
758 // Write out the set itself to the script file`
759 stepScript += "echo export ${k}=${v} >> ${stepScriptLocation}\n"
766 // Append an existing script to an environment script.
767 // Returns string of commands to do this.
768 def static envScriptAppendExistingScript(def os, def appendScript, def stepScriptLocation) {
769 assert (os == 'Windows_NT')
772 stepScript += "echo Appending ${appendScript} to ${stepScriptLocation}\r\n"
773 stepScript += "type ${appendScript} >> ${stepScriptLocation}\r\n"
778 // Finalize an environment setting script.
779 // Returns string of commands to do this.
780 def static envScriptFinalize(def os, def stepScriptLocation) {
783 if (os == 'Windows_NT') {
784 // Display the resulting script. This is useful when looking at the output log file.
785 stepScript += "echo Display the total script ${stepScriptLocation}\r\n"
786 stepScript += "type ${stepScriptLocation}\r\n"
789 stepScript += "chmod +x ${stepScriptLocation}\n"
795 def static isNeedDocker(def architecture, def os, def isBuild) {
797 if (architecture == 'x86' && os == 'Ubuntu') {
800 else if (architecture == 'arm') {
801 if (os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen') {
807 if (architecture == 'x86' && os == 'Ubuntu') {
814 def static getDockerImageName(def architecture, def os, def isBuild) {
815 // We must change some docker private images to official later
817 if (architecture == 'x86' && os == 'Ubuntu') {
818 return "hseok82/dotnet-buildtools-prereqs:ubuntu-16.04-crossx86-ef0ac75-20175511035548"
820 else if (architecture == 'arm') {
821 if (os == 'Ubuntu') {
822 return "microsoft/dotnet-buildtools-prereqs:ubuntu-14.04-cross-0cd4667-20172211042239"
824 else if (os == 'Ubuntu16.04') {
825 return "microsoft/dotnet-buildtools-prereqs:ubuntu-16.04-cross-ef0ac75-20175511035548"
827 else if (os == 'Tizen') {
828 return "hqueue/dotnetcore:ubuntu1404_cross_prereqs_v4-tizen_rootfs"
833 if (architecture == 'x86' && os == 'Ubuntu') {
834 return "hseok82/dotnet-buildtools-prereqs:ubuntu1604_x86_test"
837 println("Unknown architecture to use docker: ${architecture} ${os}");
841 // Calculates the name of the build job based on some typical parameters.
843 def static getJobName(def configuration, def architecture, def os, def scenario, def isBuildOnly) {
844 // If the architecture is x64, do not add that info into the build name.
845 // Need to change around some systems and other builds to pick up the right builds
848 def suffix = scenario != 'normal' ? "_${scenario}" : '';
853 switch (architecture) {
855 if (scenario == 'normal') {
856 // For now we leave x64 off of the name for compatibility with other jobs
857 baseName = configuration.toLowerCase() + '_' + os.toLowerCase()
859 else if (scenario == 'formatting') {
860 // we don't care about the configuration for the formatting job. It runs all configs
861 baseName = architecture.toLowerCase() + '_' + os.toLowerCase()
864 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
868 if (os.toLowerCase() == "windows_nt") {
869 // These are cross builds
870 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
873 // Defaults to a small page size set of machines.
874 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + "small_page_size"
878 // These are cross builds
881 baseName = 'armel_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
884 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
888 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
891 case 'x86_arm_altjit':
892 case 'x64_arm64_altjit':
893 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
896 println("Unknown architecture: ${architecture}");
901 return baseName + suffix
904 def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob, def bidailyCrossList) {
906 // Limited Windows ARM64 hardware is restricted for non-PR triggers to certain branches.
907 if (os == 'Windows_NT') {
908 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
909 if (!(branch in Constants.WindowsArm64Branches)) {
920 switch (architecture) {
923 if (isFlowJob && architecture == 'x86' && os == 'Ubuntu') {
924 addPeriodicTriggerHelper(job, '@daily')
926 else if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
927 addGithubPushTriggerHelper(job)
932 case 'x86_arm_altjit':
933 case 'x64_arm64_altjit':
934 addGithubPushTriggerHelper(job)
937 // We would normally want a per-push trigger, but with limited hardware we can't keep up
938 addPeriodicTriggerHelper(job, "H H/4 * * *")
941 println("Unknown architecture: ${architecture}");
947 assert !(os in bidailyCrossList)
948 // r2r gets a push trigger for checked/release
949 if (configuration == 'Checked' || configuration == 'Release') {
950 assert (os == 'Windows_NT') || (os in Constants.crossList)
951 if (architecture == 'x64' && os != 'OSX10.12') {
952 //Flow jobs should be Windows, Ubuntu, OSX0.12, or CentOS
953 if (isFlowJob || os == 'Windows_NT') {
954 addGithubPushTriggerHelper(job)
956 // OSX10.12 r2r jobs should only run every 12 hours, not daily.
957 } else if (architecture == 'x64' && os == 'OSX10.12'){
959 addPeriodicTriggerHelper(job, 'H H/12 * * *')
962 // For x86, only add per-commit jobs for Windows
963 else if (architecture == 'x86') {
964 if (os == 'Windows_NT') {
965 addGithubPushTriggerHelper(job)
968 // arm64 r2r jobs should only run daily.
969 else if (architecture == 'arm64') {
970 if (os == 'Windows_NT') {
971 addPeriodicTriggerHelper(job, '@daily')
976 case 'r2r_jitstress1':
977 case 'r2r_jitstress2':
978 case 'r2r_jitstressregs1':
979 case 'r2r_jitstressregs2':
980 case 'r2r_jitstressregs3':
981 case 'r2r_jitstressregs4':
982 case 'r2r_jitstressregs8':
983 case 'r2r_jitstressregs0x10':
984 case 'r2r_jitstressregs0x80':
985 case 'r2r_jitstressregs0x1000':
986 case 'r2r_jitminopts':
987 case 'r2r_jitforcerelocs':
988 case 'r2r_gcstress15':
989 assert !(os in bidailyCrossList)
991 // GCStress=C is currently not supported on OS X
992 if (os == 'OSX10.12' && isGCStressRelatedTesting(scenario)) {
996 // GC Stress 15 r2r gets a push trigger for checked/release
997 if (configuration == 'Checked' || configuration == 'Release') {
998 assert (os == 'Windows_NT') || (os in Constants.crossList)
999 if (architecture == 'x64') {
1000 //Flow jobs should be Windows, Ubuntu, OSX10.12, or CentOS
1001 if (isFlowJob || os == 'Windows_NT') {
1002 // Add a weekly periodic trigger
1003 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
1006 // For x86, only add per-commit jobs for Windows
1007 else if (architecture == 'x86') {
1008 if (os == 'Windows_NT') {
1009 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
1015 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1016 assert configuration == 'Release'
1017 assert architecture == 'x64'
1018 addPeriodicTriggerHelper(job, '@daily')
1019 // TODO: Add once external email sending is available again
1020 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
1023 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1024 assert configuration == 'Release'
1025 assert architecture == 'x64'
1026 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
1027 // TODO: Add once external email sending is available again
1028 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
1030 case 'standalone_gc':
1031 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1032 assert (configuration == 'Release' || configuration == 'Checked')
1033 // TODO: Add once external email sending is available again
1034 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
1035 addPeriodicTriggerHelper(job, '@daily')
1037 case 'gc_reliability_framework':
1038 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1039 assert (configuration == 'Release' || configuration == 'Checked')
1040 // Only triggered by phrase.
1043 assert !(os in bidailyCrossList)
1044 // ILASM/ILDASM roundtrip one gets a daily build, and only for release
1045 if (architecture == 'x64' && configuration == 'Release') {
1046 // We don't expect to see a job generated except in these scenarios
1047 assert (os == 'Windows_NT') || (os in Constants.crossList)
1048 if (isFlowJob || os == 'Windows_NT') {
1049 addPeriodicTriggerHelper(job, '@daily')
1054 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
1055 assert configuration == 'Checked'
1056 assert (architecture == 'x64' || architecture == 'x86')
1057 addGithubPushTriggerHelper(job)
1060 assert (os == 'Windows_NT' || os == "Ubuntu")
1061 assert architecture == 'x64'
1062 addGithubPushTriggerHelper(job)
1064 case 'jitstressregs1':
1065 case 'jitstressregs2':
1066 case 'jitstressregs3':
1067 case 'jitstressregs4':
1068 case 'jitstressregs8':
1069 case 'jitstressregs0x10':
1070 case 'jitstressregs0x80':
1071 case 'jitstressregs0x1000':
1076 case 'jitstress2_jitstressregs1':
1077 case 'jitstress2_jitstressregs2':
1078 case 'jitstress2_jitstressregs3':
1079 case 'jitstress2_jitstressregs4':
1080 case 'jitstress2_jitstressregs8':
1081 case 'jitstress2_jitstressregs0x10':
1082 case 'jitstress2_jitstressregs0x80':
1083 case 'jitstress2_jitstressregs0x1000':
1084 case 'tailcallstress':
1087 case 'jitnox86hwintrinsic':
1088 case 'jitincompletehwintrinsic':
1089 case 'jitx86hwintrinsicnoavx':
1090 case 'jitx86hwintrinsicnoavx2':
1091 case 'jitx86hwintrinsicnosimd':
1092 case 'corefx_baseline':
1093 case 'corefx_minopts':
1094 case 'corefx_jitstress1':
1095 case 'corefx_jitstress2':
1096 case 'corefx_jitstressregs1':
1097 case 'corefx_jitstressregs2':
1098 case 'corefx_jitstressregs3':
1099 case 'corefx_jitstressregs4':
1100 case 'corefx_jitstressregs8':
1101 case 'corefx_jitstressregs0x10':
1102 case 'corefx_jitstressregs0x80':
1103 case 'corefx_jitstressregs0x1000':
1105 if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
1106 assert (os == 'Windows_NT') || (os in Constants.crossList)
1107 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
1108 if (os == 'Windows_NT') {
1109 // We don't have enough ARM64 machines to run these more frequently than weekly.
1110 addPeriodicTriggerHelper(job, '@weekly')
1114 addPeriodicTriggerHelper(job, '@daily')
1120 if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
1121 assert (os == 'Windows_NT') || (os in Constants.crossList)
1122 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
1123 if (os == 'Windows_NT') {
1124 // We don't have enough ARM64 machines to run these more frequently than weekly.
1125 addPeriodicTriggerHelper(job, '@weekly')
1127 // TODO: Add once external email sending is available again
1128 // addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
1131 addPeriodicTriggerHelper(job, '@weekly')
1136 case 'gcstress0xc_zapdisable':
1137 case 'gcstress0xc_zapdisable_jitstress2':
1138 case 'gcstress0xc_zapdisable_heapverify1':
1139 case 'gcstress0xc_jitstress1':
1140 case 'gcstress0xc_jitstress2':
1141 case 'gcstress0xc_minopts_heapverify1':
1142 // GCStress=C is currently not supported on OS X
1143 if (os != 'CentOS7.1' && os != 'OSX10.12' && !(os in bidailyCrossList)) {
1144 assert (os == 'Windows_NT') || (os in Constants.crossList)
1145 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
1146 if (os == 'Windows_NT') {
1147 // We don't have enough ARM64 machines to run these more frequently than weekly.
1148 addPeriodicTriggerHelper(job, '@weekly')
1150 // TODO: Add once external email sending is available again
1151 // addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
1154 addPeriodicTriggerHelper(job, '@weekly')
1160 // Testing on other operating systems TBD
1161 assert (os == 'Windows_NT' || os == 'Ubuntu')
1162 if (architecture == 'x64' || architecture == 'x86') {
1163 if (configuration == 'Checked') {
1164 addPeriodicTriggerHelper(job, '@daily')
1169 case 'tieredcompilation':
1170 case 'corefx_tieredcompilation':
1171 // No periodic jobs just yet, still testing
1175 println("Unknown scenario: ${scenario}");
1182 // **************************
1183 // Define the basic inner loop builds for PR and commit. This is basically just the set
1184 // of coreclr builds over linux/osx 10.12/windows and debug/release/checked. In addition, the windows
1185 // builds will do a couple extra steps.
1186 // **************************
1188 // Adds a trigger for the PR build if one is needed. If isFlowJob is true, then this is the
1189 // flow job that rolls up the build and test for non-windows OS's. // If the job is a windows build only job,
1190 // it's just used for internal builds
1191 // If you add a job with a trigger phrase, please add that phrase to coreclr/Documentation/project-docs/ci-trigger-phrases.md
1192 def static addTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob) {
1193 def isNormalOrInnerloop = (scenario == "normal" || scenario == "innerloop")
1195 if (isWindowsBuildOnlyJob) {
1199 def bidailyCrossList = ['RHEL7.2', 'Debian8.4']
1200 // Non pull request builds.
1202 addNonPRTriggers(job, branch, isPR, architecture, os, configuration, scenario, isFlowJob, isWindowsBuildOnlyJob, bidailyCrossList)
1229 // Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers
1230 // We generally only have a distinct set of default triggers but a bunch of on-demand ones.
1231 def osGroup = getOSGroup(os)
1232 switch (architecture) {
1233 case 'x64': // editor brace matching: {
1234 if (scenario == 'formatting') {
1235 assert configuration == 'Checked'
1236 if (os == 'Windows_NT' || os == 'Ubuntu') {
1237 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Formatting")
1244 // OpenSUSE, Debian & RedHat get trigger phrases for pri 0 build, and pri 1 build & test
1247 if (scenario == 'innerloop') {
1249 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build")
1251 else if (scenario == 'normal') {
1252 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}.*")
1258 assert scenario != 'innerloop'
1259 // Distinguish with the other architectures (arm and x86)
1260 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}.*")
1266 assert scenario != 'innerloop'
1267 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+.*")
1271 if (scenario == 'illink') {
1272 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1278 // Triggers on the non-flow jobs aren't necessary here
1279 // Corefx testing uses non-flow jobs.
1280 if (!isFlowJob && !isCoreFxScenario(scenario)) {
1285 // PR Triggered jobs. These jobs will run pri0 tests.
1286 if (configuration == 'Checked') {
1287 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1292 // OSX uses checked for default PR tests
1293 if (configuration == 'Checked') {
1295 assert !job.name.contains("centos")
1296 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", "(?i).*test\\W+${os}\\W+${architecture}\\W+Build and Test.*")
1301 if (configuration == 'Checked') {
1302 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1307 if (configuration == 'Release') {
1308 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1313 if (configuration == 'Release') {
1314 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1319 if (configuration == 'Release') {
1320 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1324 case 'standalone_gc':
1325 if (configuration == 'Release' || configuration == 'Checked') {
1326 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1330 case 'gc_reliability_framework':
1331 if (configuration == 'Release' || configuration == 'Checked') {
1332 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1337 if (isJitStressScenario(scenario)) {
1338 def displayStr = getStressModeDisplayName(scenario)
1339 assert (os == 'Windows_NT') || (os in Constants.crossList)
1340 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1341 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1343 else if (isR2RScenario(scenario)) {
1344 if (configuration == 'Release' || configuration == 'Checked') {
1345 def displayStr = getR2RDisplayName(scenario)
1346 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build and Test",
1347 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1351 println("Unknown scenario: ${scenario}");
1362 // CentOS uses checked for default PR tests while debug is build only
1363 if (configuration == 'Debug') {
1365 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build")
1368 // Make sure this is a flow job to get build and test.
1369 if (configuration == 'Checked' && isFlowJob) {
1370 assert job.name.contains("flow")
1372 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1377 // Make sure this is a flow job to get build and test.
1378 if (configuration == 'Checked' && isFlowJob) {
1379 assert job.name.contains("flow")
1381 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", "(?i).*test\\W+${os}\\W+${architecture}\\W+Build and Test.*")
1386 if (isR2RScenario(scenario)) {
1387 if (configuration == 'Release' || configuration == 'Checked') {
1388 def displayStr = getR2RDisplayName(scenario)
1389 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1390 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1402 if (configuration == 'Checked' || configuration == 'Release') {
1403 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1408 if (configuration == 'Checked') {
1409 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", "(?i).*test\\W+${os}\\W+${architecture}\\W+Build and Test.*")
1414 if (configuration == 'Checked') {
1415 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1420 if (configuration == 'Release') {
1421 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1426 if (configuration == 'Release') {
1427 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1432 if (configuration == 'Release') {
1433 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1437 case 'standalone_gc':
1438 if (configuration == 'Release' || configuration == 'Checked') {
1439 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1443 case 'gc_reliability_framework':
1444 if (configuration == 'Release' || configuration == 'Checked') {
1445 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1450 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1454 if (isJitStressScenario(scenario)) {
1455 def displayStr = getStressModeDisplayName(scenario)
1456 assert (os == 'Windows_NT') || (os in Constants.crossList)
1457 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1458 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1460 else if (isR2RScenario(scenario)) {
1461 if (configuration == 'Release' || configuration == 'Checked') {
1462 def displayStr = getR2RDisplayName(scenario)
1463 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1464 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1468 println("Unknown scenario: ${scenario}");
1477 println("Unknown os: ${os}");
1485 // editor brace matching: }
1487 case 'arm': // editor brace matching: {
1491 if (architecture == 'armlb') { // No arm legacy backend testing for Ubuntu
1495 assert scenario != 'innerloop'
1498 azureVMAgentPostBuildAction {
1499 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1503 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build",
1504 "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
1508 if (architecture == 'armlb') { // No arm legacy backend testing for Tizen armel
1512 architecture = 'armel'
1515 azureVMAgentPostBuildAction {
1516 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1521 if (scenario == 'innerloop') {
1522 if (configuration == 'Checked') {
1523 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build and Test")
1527 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build",
1528 "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
1533 // Triggers on the non-flow jobs aren't necessary here
1538 // Set up a private trigger
1539 def contextString = "${os} ${architecture} Cross ${configuration}"
1540 def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1541 if (scenario == 'innerloop') {
1542 contextString += " Innerloop"
1543 triggerString += "\\W+Innerloop"
1546 contextString += " ${scenario}"
1547 triggerString += "\\W+${scenario}"
1550 if (configuration == 'Debug') {
1551 contextString += " Build"
1552 triggerString += "\\W+Build"
1554 contextString += " Build and Test"
1555 triggerString += "\\W+Build and Test"
1558 triggerString += ".*"
1562 // Only Checked is an innerloop trigger.
1563 if (configuration == 'Checked')
1565 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
1569 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1572 // Stress jobs will use this code path.
1573 if (isArmWindowsScenario(scenario)) {
1574 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1580 println("NYI os: ${os}");
1585 // editor brace matching: }
1586 case 'arm64': // editor brace matching: {
1587 // Set up a private trigger
1588 def contextString = "${os} ${architecture} Cross ${configuration}"
1589 def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1591 if (scenario == 'innerloop') {
1592 contextString += " Innerloop"
1593 triggerString += "\\W+Innerloop"
1596 contextString += " ${scenario}"
1597 triggerString += "\\W+${scenario}"
1600 if (configuration == 'Debug') {
1601 contextString += " Build"
1602 triggerString += "\\W+Build"
1604 contextString += " Build and Test"
1605 triggerString += "\\W+Build and Test"
1608 triggerString += ".*"
1615 if (configuration == 'Debug' && !isFlowJob) {
1616 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build")
1621 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", triggerString)
1624 if (isR2RScenario(scenario)) {
1625 if (configuration == 'Checked' || configuration == 'Release') {
1626 def displayStr = getR2RDisplayName(scenario)
1627 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build and Test", triggerString)
1635 // Triggers on the non-flow jobs aren't necessary here
1640 assert isArmWindowsScenario(scenario)
1643 if (configuration == 'Checked') {
1644 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
1649 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1652 // Stress jobs will use this code path.
1653 if (isArmWindowsScenario(scenario)) {
1654 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1660 println("NYI os: ${os}");
1666 // editor brace matching: }
1667 case 'x86': // editor brace matching: {
1668 assert ((os == 'Windows_NT') || ((os == 'Ubuntu') && isNormalOrInnerloop))
1669 if (os == 'Ubuntu') {
1670 // Triggers on the non-flow jobs aren't necessary here
1675 // on-demand only for ubuntu x86
1676 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build",
1677 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
1683 if (configuration == 'Checked' || configuration == 'Release') {
1684 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1689 if (configuration == 'Checked') {
1690 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
1691 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+Build and Test.*")
1696 if (configuration == 'Release') {
1697 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test",
1698 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1703 if (configuration == 'Release') {
1704 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test",
1705 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1710 if (configuration == 'Release') {
1711 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator",
1712 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1716 case 'standalone_gc':
1717 if (configuration == 'Release' || configuration == 'Checked') {
1718 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC",
1719 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1724 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1728 if (isJitStressScenario(scenario)) {
1729 def displayStr = getStressModeDisplayName(scenario)
1730 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1731 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1733 else if (isR2RScenario(scenario)) {
1734 if (configuration == 'Release' || configuration == 'Checked') {
1735 def displayStr = getR2RDisplayName(scenario)
1736 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1737 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1741 println("Unknown scenario: ${os} ${architecture} ${scenario}");
1749 // editor brace matching: }
1750 case 'x64_arm64_altjit':
1751 case 'x86_arm_altjit': // editor brace matching: {
1752 assert (os == 'Windows_NT')
1755 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
1756 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+Build and Test.*")
1759 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${scenario}",
1760 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1765 // editor brace matching: }
1767 println("Unknown architecture: ${architecture}");
1773 def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR, def architecture, def configuration, def os, def isBuildOnly) {
1774 def buildCommands = [];
1775 def osGroup = getOSGroup(os)
1776 def lowerConfiguration = configuration.toLowerCase()
1779 if (scenario == 'innerloop') {
1783 setJobTimeout(newJob, isPR, architecture, configuration, scenario, isBuildOnly)
1785 def enableCorefxTesting = isCoreFxScenario(scenario)
1787 // Calculate the build steps, archival, and xunit results
1789 case 'Windows_NT': // editor brace matching: {
1790 switch (architecture) {
1793 case 'x86_arm_altjit':
1794 case 'x64_arm64_altjit':
1795 def arch = architecture
1797 if (architecture == 'x86_arm_altjit') {
1800 else if (architecture == 'x64_arm64_altjit') {
1804 if (scenario == 'formatting') {
1805 buildCommands += "python -u tests\\scripts\\format.py -c %WORKSPACE% -o Windows_NT -a ${arch}"
1806 Utilities.addArchival(newJob, "format.patch", "", true, false)
1810 if (scenario == 'illink') {
1811 buildCommands += "tests\\scripts\\build_illink.cmd clone ${arch}"
1814 // If it is a release build for windows, ensure PGO is used, else fail the build
1815 if ((lowerConfiguration == 'release') &&
1816 (scenario in Constants.basicScenarios) &&
1817 (architecture != 'x86_arm_altjit') &&
1818 (architecture != 'x64_arm64_altjit')) {
1820 buildOpts += ' -enforcepgo'
1823 if (enableCorefxTesting) {
1824 buildOpts += ' skiptests';
1826 buildOpts += " -priority=${priority}"
1829 // Set __TestIntermediateDir to something short. If __TestIntermediateDir is already set, build-test.cmd will
1830 // output test binaries to that directory. If it is not set, the binaries are sent to a default directory whose name is about
1831 // 35 characters long.
1833 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${arch} ${buildOpts}"
1836 def runtestArguments = ''
1837 def testOpts = 'collectdumps'
1839 if (isR2RScenario(scenario)) {
1841 // If this is a ReadyToRun scenario, pass 'crossgen' or 'crossgenaltjit'
1842 // to cause framework assemblies to be crossgen'ed. Pass 'runcrossgentests'
1843 // to cause the tests to be crossgen'ed.
1845 if ((architecture == 'x86_arm_altjit') || (architecture == 'x64_arm64_altjit')) {
1846 testOpts += ' crossgenaltjit protononjit.dll'
1848 testOpts += ' crossgen'
1851 testOpts += ' runcrossgentests'
1853 else if (scenario == 'jitdiff') {
1854 testOpts += ' jitdisasm crossgen'
1856 else if (scenario == 'ilrt') {
1857 testOpts += ' ilasmroundtrip'
1859 else if (isLongGc(scenario)) {
1860 testOpts += " ${scenario} sequential"
1862 else if (scenario == 'standalone_gc') {
1863 testOpts += ' gcname clrgc.dll'
1865 else if (scenario == 'illink') {
1866 testOpts += " link %WORKSPACE%\\linker\\linker\\bin\\netcore_Release\\netcoreapp2.0\\win10-${arch}\\publish\\illink.exe"
1869 // Default per-test timeout is 10 minutes. For stress modes and Debug scenarios, increase this
1870 // to 30 minutes (30 * 60 * 1000 = 180000). The "timeout" argument to runtest.cmd sets this, by
1871 // taking a timeout value in milliseconds. (Note that it sets the __TestTimeout environment variable,
1872 // which is read by the xunit harness.)
1873 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario) || (lowerConfiguration == 'debug'))
1875 def timeout = 1800000
1876 testOpts += " timeout ${timeout}"
1879 // If we are running a stress mode, we should write out the set of key
1880 // value env pairs to a file at this point and then we'll pass that to runtest.cmd
1882 def envScriptPath = ''
1883 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
1884 def buildCommandsStr = ''
1885 envScriptPath = "%WORKSPACE%\\SetStressModes.bat"
1886 buildCommandsStr += envScriptCreate(os, envScriptPath)
1888 if (isJitStressScenario(scenario)) {
1889 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], envScriptPath)
1891 else if (isR2RStressScenario(scenario)) {
1892 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.r2rStressScenarios[scenario], envScriptPath)
1895 if (architecture == 'x86_arm_altjit') {
1896 buildCommandsStr += envScriptAppendExistingScript(os, "%WORKSPACE%\\tests\\x86_arm_altjit.cmd", envScriptPath)
1898 else if (architecture == 'x64_arm64_altjit') {
1899 buildCommandsStr += envScriptAppendExistingScript(os, "%WORKSPACE%\\tests\\x64_arm64_altjit.cmd", envScriptPath)
1902 envScriptFinalize(os, envScriptPath)
1904 // Note that buildCommands is an array of individually executed commands; we want all the commands used to
1905 // create the SetStressModes.bat script to be executed together, hence we accumulate them as strings
1906 // into a single script.
1907 buildCommands += buildCommandsStr
1909 else if (architecture == 'x86_arm_altjit') {
1910 envScriptPath = "%WORKSPACE%\\tests\\x86_arm_altjit.cmd"
1912 else if (architecture == 'x64_arm64_altjit') {
1913 envScriptPath = "%WORKSPACE%\\tests\\x64_arm64_altjit.cmd"
1915 if (envScriptPath != '') {
1916 testOpts += " TestEnv ${envScriptPath}"
1919 runtestArguments = "${lowerConfiguration} ${arch} ${testOpts}"
1921 if (enableCorefxTesting) {
1922 def workspaceRelativeFxRoot = "_/fx"
1923 def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
1925 buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-corefx-tests.py -arch ${arch} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${branch} -env_script ${envScriptPath}"
1927 // Archive and process (only) the test results
1928 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1929 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1931 //Archive additional build stuff to diagnose why my attempt at fault injection isn't causing CI to fail
1932 Utilities.addArchival(newJob, "SetStressModes.bat", "", true, false)
1933 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/testhost/**", "", true, false)
1935 else if (isGcReliabilityFramework(scenario)) {
1936 buildCommands += "tests\\runtest.cmd ${runtestArguments} GenerateLayoutOnly"
1937 buildCommands += "tests\\scripts\\run-gc-reliability-framework.cmd ${arch} ${configuration}"
1940 buildCommands += "tests\\runtest.cmd ${runtestArguments}"
1944 if (!enableCorefxTesting) {
1945 // Run the rest of the build
1946 // Build the mscorlib for the other OS's
1947 buildCommands += "build.cmd ${lowerConfiguration} ${arch} linuxmscorlib"
1948 buildCommands += "build.cmd ${lowerConfiguration} ${arch} osxmscorlib"
1950 if (arch == "x64") {
1951 buildCommands += "build.cmd ${lowerConfiguration} arm64 linuxmscorlib"
1954 // Zip up the tests directory so that we don't use so much space/time copying
1955 // 10s of thousands of files around.
1956 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')\"";
1958 if (!isJitStressScenario(scenario)) {
1959 // For Windows, pull full test results and test drops for x86/x64.
1960 // No need to pull for stress mode scenarios (downstream builds use the default scenario)
1961 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1964 if (scenario == 'jitdiff') {
1965 // retrieve jit-dasm output for base commit, and run jit-diff
1967 // if this is a build only job, we want to keep the default (build) artifacts for the flow job
1968 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**")
1973 Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true)
1979 assert isArmWindowsScenario(scenario)
1981 def machineAffinityOptions = ['use_arm64_build_machine' : true]
1982 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
1984 def buildArchitecture = 'arm'
1988 // For 'armlb' (the JIT LEGACY_BACKEND architecture for arm), tell build.cmd to use legacy backend for crossgen compilation.
1989 // Legacy backend is not the default JIT; it is an aljit. So, this is a special case.
1990 if (architecture == 'armlb') {
1991 buildOpts += ' -crossgenaltjit legacyjit.dll'
1994 if (enableCorefxTesting) {
1995 // We shouldn't need to build the tests. However, run-corefx-tests.py currently depends on having the restored corefx
1996 // package available, to determine the correct corefx version git commit hash, and we need to build the tests before
1997 // running "tests\\runtest.cmd GenerateLayoutOnly". So build the pri-0 tests to make this happen.
1999 // buildOpts += ' skiptests';
2000 buildOpts += " -priority=0"
2002 buildOpts += " -priority=${priority}"
2005 // This is now a build only job. Do not run tests. Use the flow job.
2006 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${buildArchitecture} ${buildOpts}"
2008 if (enableCorefxTesting) {
2010 assert architecture == 'arm'
2012 // Generate the test layout because it restores the corefx package which allows run-corefx-tests.py
2013 // to determine the correct matching corefx version git commit hash.
2014 buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} GenerateLayoutOnly"
2016 // Set the stress mode variables; this is incorporated into the generated CoreFx RunTests.cmd files.
2017 def envScriptPath = ''
2018 def buildCommandsStr = ''
2019 envScriptPath = "%WORKSPACE%\\SetStressModes.bat"
2020 buildCommandsStr += envScriptCreate(os, envScriptPath)
2021 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], envScriptPath)
2022 envScriptFinalize(os, envScriptPath)
2023 buildCommands += buildCommandsStr
2025 def workspaceRelativeFxRootLinux = "_/fx"
2026 def workspaceRelativeFxRootWin = "_\\fx"
2027 def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
2029 buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${branch} -env_script ${envScriptPath} -no_run_tests"
2031 // Zip up the CoreFx runtime and tests. We don't need the CoreCLR binaries; they have been copied to the CoreFX tree.
2032 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('${workspaceRelativeFxRootWin}\\bin\\testhost\\netcoreapp-Windows_NT-Release-arm', '${workspaceRelativeFxRootWin}\\fxruntime.zip')\"";
2033 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('${workspaceRelativeFxRootWin}\\bin\\tests', '${workspaceRelativeFxRootWin}\\fxtests.zip')\"";
2035 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/fxruntime.zip")
2036 Utilities.addArchival(newJob, "${workspaceRelativeFxRootLinux}/fxtests.zip")
2038 // Zip up the tests directory so that we don't use so much space/time copying
2039 // 10s of thousands of files around.
2040 buildCommands += "powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${buildArchitecture}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
2043 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
2047 assert isArmWindowsScenario(scenario)
2049 def machineAffinityOptions = ['use_arm64_build_machine' : true]
2050 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
2052 // This is now a build only job. Do not run tests. Use the flow job.
2053 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2 -priority=${priority}"
2055 // Zip up the tests directory so that we don't use so much space/time copying
2056 // 10s of thousands of files around.
2057 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')\"";
2060 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
2063 println("Unknown architecture: ${architecture}");
2068 // editor brace matching: }
2077 case 'Fedora24': // editor brace matching: {
2078 switch (architecture) {
2081 if (architecture == 'x86' && os == 'Ubuntu') {
2082 // build and PAL test
2083 def dockerImage = getDockerImageName(architecture, os, true)
2084 buildCommands += "docker run -i --rm -v \${WORKSPACE}:/opt/code -w /opt/code -e ROOTFS_DIR=/crossrootfs/x86 ${dockerImage} ./build.sh ${architecture} cross ${lowerConfiguration}"
2085 dockerImage = getDockerImageName(architecture, os, false)
2086 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"
2087 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
2088 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
2092 if (scenario == 'formatting') {
2093 buildCommands += "python tests/scripts/format.py -c \${WORKSPACE} -o Linux -a ${architecture}"
2094 Utilities.addArchival(newJob, "format.patch", "", true, false)
2098 if (scenario == 'illink') {
2099 assert(os == 'Ubuntu')
2100 buildCommands += "./tests/scripts/build_illink.sh --clone --arch=${architecture}"
2103 if (!enableCorefxTesting) {
2104 // We run pal tests on all OS but generate mscorlib (and thus, nuget packages)
2105 // only on supported OS platforms.
2106 def bootstrapRid = Utilities.getBoostrapPublishRid(os)
2107 def bootstrapRidEnv = bootstrapRid != null ? "__PUBLISH_RID=${bootstrapRid} " : ''
2109 buildCommands += "${bootstrapRidEnv}./build.sh verbose ${lowerConfiguration} ${architecture}"
2110 buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout"
2112 // Basic archiving of the build
2113 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
2115 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
2118 // Corefx stress testing
2119 assert os == 'Ubuntu'
2120 assert architecture == 'x64'
2121 assert lowerConfiguration == 'checked'
2122 assert isJitStressScenario(scenario)
2125 buildCommands += "./build.sh verbose ${lowerConfiguration} ${architecture}"
2127 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
2129 def envScriptCmds = envScriptCreate(os, scriptFileName)
2130 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
2131 envScriptCmds += envScriptFinalize(os, scriptFileName)
2132 buildCommands += envScriptCmds
2134 // Build and text corefx
2135 def workspaceRelativeFxRoot = "_/fx"
2136 def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRoot}"
2138 buildCommands += "python -u \$WORKSPACE/tests/scripts/run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${branch} -env_script ${scriptFileName}"
2140 // Archive and process (only) the test results
2141 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
2142 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
2146 if (!enableCorefxTesting) {
2147 buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs ./build.sh verbose ${lowerConfiguration} ${architecture} cross clang3.8"
2149 // HACK -- Arm64 does not have corefx jobs yet.
2150 buildCommands += "git clone https://github.com/dotnet/corefx fx"
2151 buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs-corefx ./fx/build-native.sh -release -buildArch=arm64 -- verbose cross clang3.8"
2152 buildCommands += "mkdir ./bin/Product/Linux.arm64.${configuration}/corefxNative"
2153 buildCommands += "cp fx/bin/Linux.arm64.Release/native/* ./bin/Product/Linux.arm64.${configuration}/corefxNative"
2155 // Basic archiving of the build
2156 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
2160 // Cross builds for ARM runs on Ubuntu, Ubuntu16.04 and Tizen currently
2161 assert (os == 'Ubuntu') || (os == 'Ubuntu16.04') || (os == 'Tizen')
2163 // default values for Ubuntu
2165 def linuxCodeName="trusty"
2166 if (os == 'Ubuntu16.04') {
2167 linuxCodeName="xenial"
2169 else if (os == 'Tizen') {
2171 linuxCodeName="tizen"
2174 // Unzip the Windows test binaries first. Exit with 0
2175 buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0"
2177 // Unpack the corefx binaries
2178 buildCommands += "mkdir ./bin/CoreFxBinDir"
2179 buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
2180 if (os != 'Tizen') {
2181 buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
2183 // Test environment emulation using docker and qemu has some problem to use lttng library.
2184 // We should remove libcoreclrtraceptprovider.so to avoid test hang.
2185 if (os == 'Ubuntu') {
2186 buildCommands += "rm -f -v ./bin/CoreFxBinDir/libcoreclrtraceptprovider.so"
2189 // Call the ARM CI script to cross build and test using docker
2190 buildCommands += """./tests/scripts/arm32_ci_script.sh \\
2193 --linuxCodeName=${linuxCodeName} \\
2194 --buildConfig=${lowerConfiguration} \\
2195 --testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\
2196 --coreFxBinDir=./bin/CoreFxBinDir \\
2197 --testDirFile=./tests/testsRunningInsideARM.txt"""
2199 // Basic archiving of the build, no pal tests
2200 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
2203 println("Unknown architecture: ${architecture}");
2208 // editor brace matching: }
2210 println("Unknown os: ${os}");
2215 return buildCommands
2218 Constants.allScenarios.each { scenario ->
2219 [true, false].each { isPR ->
2220 Constants.architectureList.each { architecture ->
2221 Constants.configurationList.each { configuration ->
2222 Constants.osList.each { os ->
2223 // If the OS is Windows_NT_BuildOnly, set the isBuildOnly flag to true
2224 // and reset the os to Windows_NT
2225 def isBuildOnly = false
2226 if (os == 'Windows_NT_BuildOnly') {
2231 // Tizen is only supported for arm architecture
2232 if (os == 'Tizen' && architecture != 'arm') {
2236 // Skip totally unimplemented (in CI) configurations.
2237 switch (architecture) {
2239 if (os == 'Ubuntu16.04') {
2243 // Windows and Ubuntu only
2244 if ((os != 'Windows_NT' && os != 'Ubuntu') || isBuildOnly) {
2249 if ((os != 'Ubuntu') && (os != 'Ubuntu16.04') && (os != 'Tizen') && (os != 'Windows_NT')) {
2254 if (os != 'Windows_NT') {
2259 if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
2263 case 'x86_arm_altjit':
2264 case 'x64_arm64_altjit':
2265 if (os != 'Windows_NT') {
2270 // Everything implemented
2273 println("Unknown architecture: ${architecture}")
2278 // Skip scenarios (blanket skipping for jit stress modes, which are good most everywhere
2279 // with checked builds)
2280 if (isJitStressScenario(scenario)) {
2281 if (configuration != 'Checked') {
2285 // Since these are just execution time differences,
2286 // skip platforms that don't execute the tests here (Windows_NT only)
2287 def isEnabledOS = (os == 'Windows_NT') || (os == 'Ubuntu' && isCoreFxScenario(scenario))
2292 switch (architecture) {
2295 case 'x86_arm_altjit':
2296 case 'x64_arm64_altjit':
2297 // x86 ubuntu: default only
2298 if ((os == 'Ubuntu') && (architecture == 'x86')) {
2307 // We use build only jobs for Windows arm cross-compilation corefx testing, so we need to generate builds for that.
2308 if (!isBuildOnly || !isCoreFxScenario(scenario)) {
2314 // arm64, armlb: stress is handled through flow jobs.
2318 else if (isR2RScenario(scenario)) {
2319 if (os != 'Windows_NT') {
2322 // Stress scenarios only run with Checked builds, not Release (they would work with Debug, but be slow).
2323 if ((configuration != 'Checked') && isR2RStressScenario(scenario)) {
2331 // The ilrt build isn't necessary except for Windows_NT2003. Non-Windows NT uses
2332 // the default scenario build
2333 if (os != 'Windows_NT') {
2337 if (architecture != 'x64') {
2341 if (configuration != 'Release') {
2346 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2349 if (architecture != 'x64') {
2352 if (configuration != 'Checked') {
2358 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2361 if (architecture != 'x64') {
2364 if (configuration != 'Release') {
2368 case 'gc_reliability_framework':
2369 case 'standalone_gc':
2370 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2374 if (architecture != 'x64') {
2378 if (configuration != 'Release' && configuration != 'Checked') {
2382 // We only run Windows and Ubuntu x64 Checked for formatting right now
2384 if (os != 'Windows_NT' && os != 'Ubuntu') {
2387 if (architecture != 'x64') {
2390 if (configuration != 'Checked') {
2398 if (os != 'Windows_NT' && (os != 'Ubuntu' || architecture != 'x64')) {
2401 if (architecture != 'x64' && architecture != 'x86') {
2412 if (!isValidPrTriggeredInnerLoopJob(os, architecture, configuration, isBuildOnly)) {
2417 println("Unknown scenario: ${scenario}")
2423 // For altjit, don't do any scenarios that don't change compilation. That is, scenarios that only change
2424 // runtime behavior, not compile-time behavior, are not interesting.
2425 switch (architecture) {
2426 case 'x86_arm_altjit':
2427 case 'x64_arm64_altjit':
2428 if (isGCStressRelatedTesting(scenario)) {
2437 def lowerConfiguration = configuration.toLowerCase()
2438 def jobName = getJobName(configuration, architecture, os, scenario, isBuildOnly)
2439 def folderName = getJobFolder(scenario)
2441 // Create the new job
2442 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folderName)) {}
2443 addToViews(newJob, isPR, architecture, os)
2445 def machineAffinityOptions = null
2447 if (os != 'Windows_NT') {
2448 machineAffinityOptions = architecture == 'arm64' ? ['is_build_only': true] : null
2451 machineAffinityOptions = (architecture == 'arm' || architecture == 'armlb' || architecture == 'arm64') ? ['use_arm64_build_machine': false] : null
2454 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
2456 // Add all the standard options
2457 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
2458 addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly) // isFlowJob==false
2460 def buildCommands = calculateBuildCommands(newJob, scenario, branch, isPR, architecture, configuration, os, isBuildOnly)
2461 def osGroup = getOSGroup(os)
2465 if (os == 'Windows_NT') {
2466 buildCommands.each { buildCommand ->
2467 batchFile(buildCommand)
2471 // Setup corefx and Windows test binaries for Linux cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
2472 if ( architecture == 'arm' && ( os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen')) {
2473 // Cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
2474 // Define the Windows Tests and Corefx build job names
2475 def WindowsTestsName = projectFolder + '/' +
2476 Utilities.getFullJobName(project,
2477 getJobName(lowerConfiguration, 'x64' , 'windows_nt', 'normal', true),
2479 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' +
2480 Utilities.getFolderName(branch)
2482 // Copy the Windows test binaries and the Corefx build binaries
2483 copyArtifacts(WindowsTestsName) {
2484 includePatterns('bin/tests/tests.zip')
2486 latestSuccessful(true)
2491 def corefx_os = 'linux'
2492 if (os == 'Tizen') {
2497 // Let's use release CoreFX to test checked CoreCLR,
2498 // because we do not generate checked CoreFX in CoreFX CI yet.
2499 def corefx_lowerConfiguration = lowerConfiguration
2500 if ( lowerConfiguration == 'checked' ) {
2501 corefx_lowerConfiguration='release'
2504 copyArtifacts("${corefxFolder}/${corefx_os}_${arm_abi}_cross_${corefx_lowerConfiguration}") {
2505 includePatterns('bin/build.tar.gz')
2507 latestSuccessful(true)
2512 buildCommands.each { buildCommand ->
2526 // Create jobs requiring flow jobs. This includes x64 non-Windows, arm64 Ubuntu, and arm/arm64/armlb Windows.
2527 Constants.allScenarios.each { scenario ->
2528 def isNormalOrInnerloop = (scenario == 'innerloop' || scenario == 'normal')
2530 [true, false].each { isPR ->
2531 ['arm', 'armlb', 'x64', 'arm64', 'x86'].each { architecture ->
2532 Constants.crossList.each { os ->
2533 if (architecture == 'arm64') {
2534 if (os != "Ubuntu" && os != "Windows_NT") {
2537 } else if (architecture == 'arm' || architecture == 'armlb') {
2538 if (os != 'Windows_NT') {
2541 } else if (architecture == 'x86') {
2542 if (os != "Ubuntu") {
2547 def validWindowsNTCrossArches = ["arm", "armlb", "arm64"]
2549 if (os == "Windows_NT" && !(architecture in validWindowsNTCrossArches)) {
2553 Constants.configurationList.each { configuration ->
2555 // First, filter based on OS.
2557 if (os == 'Windows_NT') {
2558 if (!isArmWindowsScenario(scenario)) {
2564 if (architecture == 'arm64') {
2565 if (!(scenario in Constants.validLinuxArm64Scenarios)) {
2569 else if (architecture == 'x86') {
2570 // Linux/x86 only want innerloop and default test
2571 if (!isNormalOrInnerloop) {
2577 // For CentOS, we only want Checked/Release builds.
2578 if (os == 'CentOS7.1') {
2579 if (configuration != 'Checked' && configuration != 'Release') {
2582 if (!isNormalOrInnerloop && !isR2RScenario(scenario) && !isJitStressScenario(scenario)) {
2587 // For RedHat and Debian, we only do Release builds.
2588 else if (os == 'RHEL7.2' || os == 'Debian8.4') {
2589 if (configuration != 'Release') {
2592 if (!isNormalOrInnerloop) {
2597 // Next, filter based on scenario.
2599 if (isJitStressScenario(scenario)) {
2600 if (configuration != 'Checked') {
2604 // CoreFx JIT stress tests currently only implemented for ARM.
2605 if (isCoreFxScenario(scenario) && (architecture != 'arm')) {
2609 else if (isR2RBaselineScenario(scenario)) {
2610 if (configuration != 'Checked' && configuration != 'Release') {
2614 else if (isR2RStressScenario(scenario)) {
2615 if (configuration != 'Checked') {
2625 // Long GC tests take a long time on non-Release builds
2626 // ilrt is also Release only
2627 if (configuration != 'Release') {
2633 if (configuration != 'Checked') {
2638 case 'gc_reliability_framework':
2639 case 'standalone_gc':
2640 if (configuration != 'Release' && configuration != 'Checked') {
2648 if (os != 'Windows_NT' && os != 'Ubuntu') {
2659 if (!isValidPrTriggeredInnerLoopJob(os, architecture, configuration, false)) {
2665 println("Unknown scenario: ${scenario}")
2671 // Done filtering. Now, create the jobs.
2673 // =============================================================================================
2674 // Create the test job
2675 // =============================================================================================
2677 def windowsArmJob = (os == "Windows_NT" && architecture in validWindowsNTCrossArches)
2679 def lowerConfiguration = configuration.toLowerCase()
2680 def osGroup = getOSGroup(os)
2681 def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
2683 def inputCoreCLRBuildScenario = scenario == 'innerloop' ? 'innerloop' : 'normal'
2684 def inputCoreCLRBuildIsBuildOnly = false
2685 if (isCoreFxScenario(scenario)) {
2686 // Every CoreFx test depends on its own unique build.
2687 inputCoreCLRBuildScenario = scenario
2688 inputCoreCLRBuildIsBuildOnly = true
2690 def inputCoreCLRFolderName = getJobFolder(inputCoreCLRBuildScenario)
2691 def inputCoreCLRBuildName = projectFolder + '/' +
2692 Utilities.getFullJobName(project, getJobName(configuration, architecture, os, inputCoreCLRBuildScenario, inputCoreCLRBuildIsBuildOnly), isPR, inputCoreCLRFolderName)
2694 def inputWindowsTestsBuildName = ""
2695 if (windowsArmJob != true) {
2696 // If this is a stress scenario, there isn't any difference in the build job, so we didn't create a build only
2697 // job for Windows_NT specific to that stress mode. Just copy from the default scenario.
2699 def testBuildScenario = scenario == 'innerloop' ? 'innerloop' : 'normal'
2701 def inputWindowsTestBuildArch = architecture
2702 if (architecture == "arm64" && os != "Windows_NT") {
2703 // Use the x64 test build for arm64 unix
2704 inputWindowsTestBuildArch = "x64"
2707 if (isJitStressScenario(scenario)) {
2708 inputWindowsTestsBuildName = projectFolder + '/' +
2709 Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', testBuildScenario, false), isPR)
2711 inputWindowsTestsBuildName = projectFolder + '/' +
2712 Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', testBuildScenario, true), isPR)
2714 } // if (windowsArmJob != true)
2716 def serverGCString = ''
2719 if (windowsArmJob != true) {
2720 // Enable Server GC for Ubuntu PR builds
2721 if (os == 'Ubuntu' && isPR) {
2722 serverGCString = '--useServerGC'
2725 if (isR2RScenario(scenario)) {
2727 testOpts += ' --crossgen --runcrossgentests'
2729 if (scenario == 'r2r_jitstress1') {
2730 testOpts += ' --jitstress=1'
2732 else if (scenario == 'r2r_jitstress2') {
2733 testOpts += ' --jitstress=2'
2735 else if (scenario == 'r2r_jitstressregs1') {
2736 testOpts += ' --jitstressregs=1'
2738 else if (scenario == 'r2r_jitstressregs2') {
2739 testOpts += ' --jitstressregs=2'
2741 else if (scenario == 'r2r_jitstressregs3') {
2742 testOpts += ' --jitstressregs=3'
2744 else if (scenario == 'r2r_jitstressregs4') {
2745 testOpts += ' --jitstressregs=4'
2747 else if (scenario == 'r2r_jitstressregs8') {
2748 testOpts += ' --jitstressregs=8'
2750 else if (scenario == 'r2r_jitstressregs0x10') {
2751 testOpts += ' --jitstressregs=0x10'
2753 else if (scenario == 'r2r_jitstressregs0x80') {
2754 testOpts += ' --jitstressregs=0x80'
2756 else if (scenario == 'r2r_jitstressregs0x1000') {
2757 testOpts += ' --jitstressregs=0x1000'
2759 else if (scenario == 'r2r_jitminopts') {
2760 testOpts += ' --jitminopts'
2762 else if (scenario == 'r2r_jitforcerelocs') {
2763 testOpts += ' --jitforcerelocs'
2765 else if (scenario == 'r2r_gcstress15') {
2766 testOpts += ' --gcstresslevel=0xF'
2769 else if (scenario == 'jitdiff') {
2770 testOpts += ' --jitdisasm --crossgen'
2772 else if (scenario == 'illink') {
2773 testOpts += ' --link=\$WORKSPACE/linker/linker/bin/netcore_Release/netcoreapp2.0/ubuntu-x64/publish/illink'
2775 else if (isLongGc(scenario)) {
2776 // Long GC tests behave very poorly when they are not
2777 // the only test running (many of them allocate until OOM).
2778 testOpts += ' --sequential'
2780 // A note - runtest.sh does have "--long-gc" and "--gcsimulator" options
2781 // for running long GC and GCSimulator tests, respectively. We don't use them
2782 // here because using a playlist file produces much more readable output on the CI machines
2783 // and reduces running time.
2785 // The Long GC playlist contains all of the tests that are
2786 // going to be run. The GCSimulator playlist contains all of
2787 // the GC simulator tests.
2788 if (scenario == 'longgc') {
2789 testOpts += ' --long-gc --playlist=./tests/longRunningGcTests.txt'
2791 else if (scenario == 'gcsimulator') {
2792 testOpts += ' --gcsimulator --playlist=./tests/gcSimulatorTests.txt'
2795 else if (isGcReliabilityFramework(scenario)) {
2796 testOpts += ' --build-overlay-only'
2798 else if (scenario == 'standalone_gc') {
2799 if (osGroup == 'OSX') {
2800 testOpts += ' --gcname=libclrgc.dylib'
2802 else if (osGroup == 'Linux') {
2803 testOpts += ' --gcname=libclrgc.so'
2806 println("Unexpected OS group: ${osGroup} for os ${os}")
2810 } // if (windowsArmJob != true)
2812 def folder = getJobFolder(scenario)
2813 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folder)) {
2814 // Add parameters for the inputs
2816 if (windowsArmJob == true) {
2818 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2823 stringParam('CORECLR_WINDOWS_BUILD', '', 'Build number to copy CoreCLR Windows test binaries from')
2824 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2829 // Set up the copies
2831 // Coreclr build containing the tests and mscorlib
2832 // pri1 jobs still need to copy windows_nt built tests
2833 if (windowsArmJob != true) {
2834 copyArtifacts(inputWindowsTestsBuildName) {
2835 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2837 buildNumber('${CORECLR_WINDOWS_BUILD}')
2842 // Coreclr build we are trying to test
2844 // ** NOTE ** This will, correctly, overwrite the CORE_ROOT from the Windows test archive
2846 copyArtifacts(inputCoreCLRBuildName) {
2847 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2849 buildNumber('${CORECLR_BUILD}')
2853 // Windows CoreCLR Arm(64) will restore corefx
2854 // packages correctly.
2856 // In addition, test steps are entirely different
2857 // because we do not have a unified runner
2858 if (windowsArmJob != true) {
2859 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(branch)
2861 // HACK -- Arm64 does not have corefx jobs yet.
2862 // Clone corefx and build the native packages overwriting the x64 packages.
2863 if (architecture == 'arm64') {
2864 shell("cp ./bin/Product/Linux.arm64.${configuration}/corefxNative/* ./bin/CoreFxBinDir")
2865 shell("chmod +x ./bin/Product/Linux.arm64.${configuration}/corerun")
2867 else if (architecture == 'x86') {
2868 shell("mkdir ./bin/CoreFxNative")
2870 copyArtifacts("${corefxFolder}/ubuntu16.04_x86_release") {
2871 includePatterns('bin/build.tar.gz')
2872 targetDirectory('bin/CoreFxNative')
2874 latestSuccessful(true)
2878 shell("tar -xf ./bin/CoreFxNative/bin/build.tar.gz -C ./bin/CoreFxBinDir")
2881 // Unzip the tests first. Exit with 0
2882 shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/${osGroup}.${architecture}.${configuration} || exit 0")
2883 shell("rm -r ./bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root || exit 0")
2885 shell("./build-test.sh ${architecture} ${configuration} generatelayoutonly")
2887 // Execute the tests
2888 def runDocker = isNeedDocker(architecture, os, false)
2889 def dockerPrefix = ""
2892 def dockerImage = getDockerImageName(architecture, os, false)
2893 dockerPrefix = "docker run -i --rm -v \${WORKSPACE}:\${WORKSPACE} -w \${WORKSPACE} "
2894 dockerCmd = dockerPrefix + "${dockerImage} "
2897 // If we are running a stress mode, we'll set those variables first
2899 if (isJitStressScenario(scenario)) {
2900 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
2901 def envScriptCmds = envScriptCreate(os, scriptFileName)
2902 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
2903 envScriptCmds += envScriptFinalize(os, scriptFileName)
2904 shell("${envScriptCmds}")
2905 testEnvOpt = "--test-env=" + scriptFileName
2908 if (isGCStressRelatedTesting(scenario)) {
2909 shell('./init-tools.sh')
2912 shell("""${dockerCmd}./tests/runtest.sh \\
2913 --testRootDir=\"\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}\" \\
2914 --coreOverlayDir=\"\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root\" \\
2915 --testNativeBinDir=\"\${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
2916 --copyNativeTestBin --limitedDumpGeneration ${testEnvOpt} ${serverGCString} ${testOpts}""")
2918 if (isGcReliabilityFramework(scenario)) {
2919 // runtest.sh doesn't actually execute the reliability framework - do it here.
2920 if (serverGCString != '') {
2922 dockerCmd = dockerPrefix + "-e COMPlus_gcServer=1 ${dockerImage} "
2925 shell("export COMPlus_gcServer=1")
2929 shell("${dockerCmd}./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")
2932 else { // windowsArmJob == true
2934 if (isCoreFxScenario(scenario)) {
2936 // Only arm supported for corefx testing now.
2937 assert architecture == 'arm'
2939 // Unzip CoreFx runtime
2940 batchFile("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('_\\fx\\fxruntime.zip', '_\\fx\\bin\\testhost\\netcoreapp-Windows_NT-Release-arm')")
2942 // Unzip CoreFx tests.
2943 batchFile("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('_\\fx\\fxtests.zip', '_\\fx\\bin\\tests')")
2945 // Add the script to run the corefx tests
2946 def corefx_runtime_path = "%WORKSPACE%\\_\\fx\\bin\\testhost\\netcoreapp-Windows_NT-Release-arm"
2947 def corefx_tests_dir = "%WORKSPACE%\\_\\fx\\bin\\tests"
2948 def corefx_exclusion_file = "%WORKSPACE%\\tests\\arm\\corefx_test_exclusions.txt"
2949 batchFile("call %WORKSPACE%\\tests\\scripts\\run-corefx-tests.bat ${corefx_runtime_path} ${corefx_tests_dir} ${corefx_exclusion_file}")
2951 } else { // !isCoreFxScenario(scenario)
2954 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}')")
2956 def buildCommands = ""
2958 def coreRootLocation = "%WORKSPACE%\\bin\\tests\\Windows_NT.${architecture}.${configuration}\\Tests\\Core_Root"
2959 def addEnvVariable = { variable, value -> buildCommands += "set ${variable}=${value}\r\n"}
2960 def addCommand = { cmd -> buildCommands += "${cmd}\r\n"}
2962 // Make sure Command Extensions are enabled. Used so %ERRORLEVEL% is available.
2963 addCommand("SETLOCAL ENABLEEXTENSIONS")
2966 addEnvVariable("CORE_ROOT", coreRootLocation)
2968 addEnvVariable("COMPlus_NoGuiOnAssert", "1")
2969 addEnvVariable("COMPlus_ContinueOnAssert", "0")
2971 // ARM legacy backend; this is an altjit.
2972 if (architecture == "armlb") {
2973 addEnvVariable("COMPlus_AltJit", "*")
2974 addEnvVariable("COMPlus_AltJitNgen", "*")
2975 addEnvVariable("COMPlus_AltJitName", "legacyjit.dll")
2976 addEnvVariable("COMPlus_AltJitAssertOnNYI", "1")
2979 // If we are running a stress mode, we'll set those variables as well
2980 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
2981 def stressValues = null
2982 if (isJitStressScenario(scenario)) {
2983 stressValues = Constants.jitStressModeScenarios[scenario]
2986 stressValues = Constants.r2rStressScenarios[scenario]
2989 stressValues.each { key, value ->
2990 addEnvVariable(key, value)
2994 if (isR2RScenario(scenario)) {
2995 // Crossgen the framework assemblies.
2996 buildCommands += """
2997 @for %%F in (%CORE_ROOT%\\*.dll) do @call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
2998 @goto skip_PrecompileAssembly
3001 @REM Skip mscorlib since it is already precompiled.
3002 @if /I "%3" == "mscorlib.dll" exit /b 0
3003 @if /I "%3" == "mscorlib.ni.dll" exit /b 0
3005 "%CORE_ROOT%\\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" %2 >nul 2>nul
3006 @if "%errorlevel%" == "-2146230517" (
3007 echo %2 is not a managed assembly.
3008 ) else if "%errorlevel%" == "-2146234344" (
3009 echo %2 is not a managed assembly.
3010 ) else if %errorlevel% neq 0 (
3011 echo Unable to precompile %2
3017 :skip_PrecompileAssembly
3020 // Set RunCrossGen variable to cause test wrappers to invoke their logic to run
3021 // crossgen on tests before running them.
3022 addEnvVariable("RunCrossGen", "true")
3023 } // isR2RScenario(scenario)
3025 // Create the smarty command
3026 def smartyCommand = "C:\\Tools\\Smarty.exe /noecid /noie /workers 9 /inc EXPECTED_PASS "
3027 def addSmartyFlag = { flag -> smartyCommand += flag + " "}
3028 def addExclude = { exclude -> addSmartyFlag("/exc " + exclude)}
3030 def addArchSpecificExclude = { architectureToExclude, exclude -> if (architectureToExclude == "armlb") { addExclude("LEGACYJIT_" + exclude) } else { addExclude(exclude) } }
3032 if (architecture == "armlb") {
3033 addExclude("LEGACYJIT_FAIL")
3036 // Exclude tests based on scenario.
3037 Constants.validArmWindowsScenarios[scenario].each { excludeTag ->
3038 addArchSpecificExclude(architecture, excludeTag)
3041 // Innerloop jobs run Pri-0 tests; everyone else runs Pri-1.
3042 if (scenario == 'innerloop') {
3046 // Exclude any test marked LONG_RUNNING; these often exceed the standard timeout and fail as a result.
3047 // TODO: We should create a "long running" job that runs these with a longer timeout.
3048 addExclude("LONG_RUNNING")
3050 smartyCommand += "/lstFile Tests.lst"
3052 def testListArch = [
3058 def archLocation = testListArch[architecture]
3060 addCommand("copy %WORKSPACE%\\tests\\${archLocation}\\Tests.lst bin\\tests\\${osGroup}.${architecture}.${configuration}")
3061 addCommand("pushd bin\\tests\\${osGroup}.${architecture}.${configuration}")
3062 addCommand("${smartyCommand}")
3064 // Save the errorlevel from the smarty command to be used as the errorlevel of this batch file.
3065 // However, we also need to remove all the variables that were set during this batch file, so we
3066 // can run the ZIP powershell command (below) in a clean environment. (We can't run the powershell
3067 // command with the COMPlus_AltJit variables set, for example.) To do that, we do ENDLOCAL as well
3068 // as save the current errorlevel on the same line. This works because CMD evaluates the %errorlevel%
3069 // variable expansion (or any variable expansion on the line) BEFORE it executes the ENDLOCAL command.
3070 // Note that the ENDLOCAL also undoes the pushd command, but we add the popd here for clarity.
3071 addCommand("popd & ENDLOCAL & set __save_smarty_errorlevel=%errorlevel%")
3073 // ZIP up the smarty output, no matter what the smarty result.
3074 addCommand("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${architecture}.${configuration}\\Smarty.run.0', '.\\bin\\tests\\${osGroup}.${architecture}.${configuration}\\Smarty.run.0.zip')\"")
3076 addCommand("echo %errorlevel%")
3077 addCommand("dir .\\bin\\tests\\${osGroup}.${architecture}.${configuration}")
3079 // Use the smarty errorlevel as the script errorlevel.
3080 addCommand("exit /b %__save_smarty_errorlevel%")
3082 batchFile(buildCommands)
3083 } // non-corefx testing
3084 } // windowsArmJob == true
3088 addToViews(newJob, isPR, architecture, os)
3090 if (scenario == 'jitdiff') {
3091 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/dasm/**")
3094 // Experimental: If on Ubuntu 14.04, then attempt to pull in crash dump links
3095 if (os in ['Ubuntu']) {
3096 SummaryBuilder summaries = new SummaryBuilder()
3097 summaries.addLinksSummaryFromFile('Crash dumps from this run:', 'dumplings.txt')
3098 summaries.emit(newJob)
3101 def affinityOptions = null
3103 if (windowsArmJob == true) {
3105 "use_arm64_build_machine" : false
3109 else if (architecture == 'arm64' && os != 'Windows_NT') {
3111 "large_pages" : false
3115 setMachineAffinity(newJob, os, architecture, affinityOptions)
3116 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
3118 setJobTimeout(newJob, isPR, architecture, configuration, scenario, false)
3120 if (windowsArmJob != true) {
3121 Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml')
3124 if (!isCoreFxScenario(scenario)) {
3125 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.run.0/*.smrt", '', true, false)
3127 // Archive a ZIP file of the entire Smarty.run.0 directory. This is possibly a little too much,
3128 // but there is no easy way to only archive the HTML/TXT files of the failing tests, so we get
3129 // all the passing test info as well. Not necessarily a bad thing, but possibly somewhat large.
3130 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.run.0.zip", '', true, false)
3134 // =============================================================================================
3135 // Create a build flow to join together the build and tests required to run this test.
3136 // =============================================================================================
3138 // Windows CoreCLR build and Linux CoreCLR build (in parallel) ->
3139 // Linux CoreCLR test
3140 def flowJobName = getJobName(configuration, architecture, os, scenario, false) + "_flow"
3141 def fullTestJobName = projectFolder + '/' + newJob.name
3142 // Add a reference to the input jobs for report purposes
3143 JobReport.Report.addReference(inputCoreCLRBuildName)
3144 if (windowsArmJob != true) {
3145 JobReport.Report.addReference(inputWindowsTestsBuildName)
3147 JobReport.Report.addReference(fullTestJobName)
3148 def newFlowJob = null
3150 if (os == 'RHEL7.2' || os == 'Debian8.4') {
3151 // Do not create the flow job for RHEL jobs.
3155 // For pri0 jobs we can build tests on unix
3156 if (windowsArmJob) {
3157 // For Windows arm jobs there is no reason to build a parallel test job.
3158 // The product build supports building and archiving the tests.
3160 newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
3162 coreclrBuildJob = build(params, '${inputCoreCLRBuildName}')
3164 // And then build the test build
3165 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number], '${fullTestJobName}')
3170 newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
3172 // Build the input jobs in parallel
3174 { coreclrBuildJob = build(params, '${inputCoreCLRBuildName}') },
3175 { windowsBuildJob = build(params, '${inputWindowsTestsBuildName}') }
3178 // And then build the test build
3179 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
3180 CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}')
3185 addToViews(newFlowJob, isPR, architecture, os)
3187 // For the flow jobs set the machine affinity as x64 if an armarch.
3188 def flowArch = architecture
3190 if (flowArch in validWindowsNTCrossArches) {
3192 affinityOptions = null
3195 setMachineAffinity(newFlowJob, os, flowArch, affinityOptions)
3196 Utilities.standardJobSetup(newFlowJob, project, isPR, "*/${branch}")
3197 addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false) // isFlowJob==true, isWindowsBuildOnlyJob==false
3204 JobReport.Report.generateJobReport(out)
3206 // Make the call to generate the help job
3207 Utilities.createHelperJob(this, project, branch,
3208 "Welcome to the ${project} Repository", // This is prepended to the help message
3209 "Have a nice day!") // This is appended to the help message. You might put known issues here.
3211 Utilities.addCROSSCheck(this, project, branch)