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 // Innerloop build OS's
39 // The Windows_NT_BuildOnly OS is a way to speed up the Non-NT builds temporarily by avoiding
40 // test execution in the build flow runs. It generates the exact same build
41 // as Windows_NT but without the tests.
47 'Windows_NT_BuildOnly',
55 def static crossList = ['Ubuntu', 'OSX10.12', 'CentOS7.1', 'RHEL7.2', 'Debian8.4', 'Windows_NT']
57 // This is a set of JIT stress modes combined with the set of variables that
58 // need to be set to actually enable that stress mode. The key of the map is the stress mode and
59 // the values are the environment variables
60 def static jitStressModeScenarios = [
61 'minopts' : ['COMPlus_JITMinOpts' : '1'],
62 'tieredcompilation' : ['COMPlus_EXPERIMENTAL_TieredCompilation' : '1'],
63 'forcerelocs' : ['COMPlus_ForceRelocs' : '1'],
64 'jitstress1' : ['COMPlus_JitStress' : '1'],
65 'jitstress2' : ['COMPlus_JitStress' : '2'],
66 'jitstressregs1' : ['COMPlus_JitStressRegs' : '1'],
67 'jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
68 'jitstressregs3' : ['COMPlus_JitStressRegs' : '3'],
69 'jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
70 'jitstressregs8' : ['COMPlus_JitStressRegs' : '8'],
71 'jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
72 'jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
73 'jitstressregs0x1000' : ['COMPlus_JitStressRegs' : '0x1000'],
74 'jitstress2_jitstressregs1' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '1'],
75 'jitstress2_jitstressregs2' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '2'],
76 'jitstress2_jitstressregs3' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '3'],
77 'jitstress2_jitstressregs4' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '4'],
78 'jitstress2_jitstressregs8' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '8'],
79 'jitstress2_jitstressregs0x10' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x10'],
80 'jitstress2_jitstressregs0x80' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x80'],
81 'jitstress2_jitstressregs0x1000' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x1000'],
82 'tailcallstress' : ['COMPlus_TailcallStress' : '1'],
83 'jitsse2only' : ['COMPlus_EnableAVX' : '0', 'COMPlus_EnableSSE3_4' : '0'],
84 'jitnosimd' : ['COMPlus_FeatureSIMD' : '0'],
85 'corefx_baseline' : [ : ], // corefx baseline
86 'corefx_minopts' : ['COMPlus_JITMinOpts' : '1'],
87 'corefx_tieredcompilation' : ['COMPlus_EXPERIMENTAL_TieredCompilation' : '1'],
88 'corefx_jitstress1' : ['COMPlus_JitStress' : '1'],
89 'corefx_jitstress2' : ['COMPlus_JitStress' : '2'],
90 'corefx_jitstressregs1' : ['COMPlus_JitStressRegs' : '1'],
91 'corefx_jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
92 'corefx_jitstressregs3' : ['COMPlus_JitStressRegs' : '3'],
93 'corefx_jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
94 'corefx_jitstressregs8' : ['COMPlus_JitStressRegs' : '8'],
95 'corefx_jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
96 'corefx_jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
97 'corefx_jitstressregs0x1000' : ['COMPlus_JitStressRegs' : '0x1000'],
98 'gcstress0x3' : ['COMPlus_GCStress' : '0x3'],
99 'gcstress0xc' : ['COMPlus_GCStress' : '0xC'],
100 'zapdisable' : ['COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
101 'heapverify1' : ['COMPlus_HeapVerify' : '1'],
102 'gcstress0xc_zapdisable' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
103 'gcstress0xc_zapdisable_jitstress2' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_JitStress' : '2'],
104 'gcstress0xc_zapdisable_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_HeapVerify' : '1'],
105 'gcstress0xc_jitstress1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '1'],
106 'gcstress0xc_jitstress2' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '2'],
107 'gcstress0xc_minopts_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JITMinOpts' : '1', 'COMPlus_HeapVerify' : '1']
110 // This is a set of ReadyToRun stress scenarios
111 def static r2rStressScenarios = [
112 'r2r_jitstress1' : ["COMPlus_JitStress": "1"],
113 'r2r_jitstress2' : ["COMPlus_JitStress": "2"],
114 'r2r_jitstressregs1' : ["COMPlus_JitStressRegs": "1"],
115 'r2r_jitstressregs2' : ["COMPlus_JitStressRegs": "2"],
116 'r2r_jitstressregs3' : ["COMPlus_JitStressRegs": "3"],
117 'r2r_jitstressregs4' : ["COMPlus_JitStressRegs": "4"],
118 'r2r_jitstressregs8' : ["COMPlus_JitStressRegs": "8"],
119 'r2r_jitstressregs0x10' : ["COMPlus_JitStressRegs": "0x10"],
120 'r2r_jitstressregs0x80' : ["COMPlus_JitStressRegs": "0x80"],
121 'r2r_jitstressregs0x1000' : ["COMPlus_JitStressRegs": "0x1000"],
122 'r2r_jitminopts' : ["COMPlus_JITMinOpts": "1"],
123 'r2r_jitforcerelocs' : ["COMPlus_ForceRelocs": "1"],
124 'r2r_gcstress15' : ["COMPlus_GCStress": "0xF"]
127 // This is the basic set of scenarios
128 def static basicScenarios = [
137 'gc_reliability_framework',
138 'illink'] + r2rStressScenarios.keySet()
140 def static allScenarios = basicScenarios + jitStressModeScenarios.keySet()
142 // A set of scenarios that are valid for arm/arm64/armlb tests run on hardware. This is a map from valid scenario name
143 // to Tests.lst file categories to exclude.
145 // This list should contain a subset of the scenarios from `allScenarios`. Please keep this in the same order as that,
146 // and with the same values, with some commented out, for easier maintenance.
148 // Note that some scenarios that are commented out should be enabled, but haven't yet been.
150 def static validArmWindowsScenarios = [
153 // 'r2r': ["R2R_FAIL"],
159 // 'gc_reliability_framework'
163 // 'r2r_jitstressregs1'
164 // 'r2r_jitstressregs2'
165 // 'r2r_jitstressregs3'
166 // 'r2r_jitstressregs4'
167 // 'r2r_jitstressregs8'
168 // 'r2r_jitstressregs0x10'
169 // 'r2r_jitstressregs0x80'
170 // 'r2r_jitstressregs0x1000'
172 // 'r2r_jitforcerelocs'
174 'minopts': ["MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
175 // 'tieredcompilation'
177 'jitstress1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
178 'jitstress2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
179 'jitstressregs1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
180 'jitstressregs2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
181 'jitstressregs3': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
182 'jitstressregs4': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
183 'jitstressregs8': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
184 'jitstressregs0x10': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
185 'jitstressregs0x80': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
186 'jitstressregs0x1000': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
187 'jitstress2_jitstressregs1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
188 'jitstress2_jitstressregs2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
189 'jitstress2_jitstressregs3': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
190 'jitstress2_jitstressregs4': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
191 'jitstress2_jitstressregs8': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
192 'jitstress2_jitstressregs0x10': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
193 'jitstress2_jitstressregs0x80': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
194 'jitstress2_jitstressregs0x1000': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
195 'tailcallstress': ["TAILCALLSTRESS_FAIL", "TAILCALLSTRESS_EXCLUDE"],
196 // 'jitsse2only' // Only relevant to xarch
200 // 'corefx_tieredcompilation'
201 // 'corefx_jitstress1'
202 // 'corefx_jitstress2'
203 // 'corefx_jitstressregs1'
204 // 'corefx_jitstressregs2'
205 // 'corefx_jitstressregs3'
206 // 'corefx_jitstressregs4'
207 // 'corefx_jitstressregs8'
208 // 'corefx_jitstressregs0x10'
209 // 'corefx_jitstressregs0x80'
210 // 'corefx_jitstressregs0x1000'
211 'gcstress0x3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
212 'gcstress0xc': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
213 'zapdisable': ["ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
215 // 'gcstress0xc_zapdisable'
216 // 'gcstress0xc_zapdisable_jitstress2'
217 // 'gcstress0xc_zapdisable_heapverify1'
218 'gcstress0xc_jitstress1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
219 'gcstress0xc_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
220 // 'gcstress0xc_minopts_heapverify1'
223 // NOTE: the following scenarios are not defined in the 'allScenarios' list! Is this a bug?
226 'minopts_zapdisable': ["ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE", "TAILCALLSTRESS_FAIL", "TAILCALLSTRESS_EXCLUDE"],
227 'gcstress0x3_jitstress1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
228 'gcstress0x3_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
229 'gcstress0x3_jitstressregs1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
230 'gcstress0x3_jitstressregs2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
231 'gcstress0x3_jitstressregs3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
232 'gcstress0x3_jitstressregs4': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
233 'gcstress0x3_jitstressregs8': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
234 'gcstress0x3_jitstressregs0x10': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
235 'gcstress0x3_jitstressregs0x80': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
236 'gcstress0x3_jitstressregs0x1000': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
237 'gcstress0xc_jitstressregs1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
238 'gcstress0xc_jitstressregs2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
239 'gcstress0xc_jitstressregs3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
240 'gcstress0xc_jitstressregs4': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
241 'gcstress0xc_jitstressregs8': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
242 'gcstress0xc_jitstressregs0x10': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
243 'gcstress0xc_jitstressregs0x80': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
244 'gcstress0xc_jitstressregs0x1000': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"]
247 def static configurationList = ['Debug', 'Checked', 'Release']
249 // This is the set of architectures
250 def static architectureList = ['arm', 'armlb', 'x86_arm_altjit', 'x64_arm64_altjit', 'arm64', 'x64', 'x86', 'x86lb']
253 def static setMachineAffinity(def job, def os, def architecture, def options = null) {
254 assert os instanceof String
255 assert architecture instanceof String
257 def armArches = ['arm', 'armlb', 'arm64']
258 def supportedArmLinuxOs = ['Ubuntu', 'Ubuntu16.04', 'Tizen']
260 if (!(architecture in armArches)) {
261 assert options == null
262 Utilities.setMachineAffinity(job, os, 'latest-or-auto')
267 // This is an arm(64) job.
269 // There are several options.
273 // Arm32 (Build) -> latest-arm64
274 // |-> os == "Windows_NT" && architecture == "arm" || architecture == "armlb" && options['use_arm64_build_machine'] == true
275 // Arm32 (Test) -> arm64-windows_nt
276 // |-> os == "Windows_NT" && architecture == "arm" || architecture == "armlb" && options['use_arm64_build_machine'] == false
278 // Arm64 (Build) -> latest-arm64
279 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == false
280 // Arm64 (Test) -> arm64-windows_nt
281 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == false
285 // Arm32 (Build) -> arm-cross-latest
286 // |-> os in supportedArmLinuxOs && architecture == "arm" || architecture == "armlb"
287 // Arm32 (Test) -> NYI Arch not supported
290 // Arm64 (Build) -> arm64-cross-latest
291 // |-> os != "Windows_NT" && architecture == "arm64" && options['is_build_only'] == true
292 // Arm64 Small Page Size (Test) -> arm64-small-page-size
293 // |-> os != "Windows_NT" && architecture == "arm64" && options['large_pages'] == false
294 // Arm64 Large Page Size (Test) -> arm64-huge-page-size
295 // |-> os != "Windows_NT" && architecture == "arm64" && options['large_pages'] == true
297 // This has to be a arm arch
298 assert architecture in armArches
299 if (os == "Windows_NT") {
300 // Arm(64) windows jobs share the same machines for now
301 def isBuild = options['use_arm64_build_machine'] == true
303 if (isBuild == true) {
304 Utilities.setMachineAffinity(job, os, 'latest-arm64')
306 Utilities.setMachineAffinity(job, os, 'arm64-windows_nt')
309 assert os != 'Windows_NT'
310 assert os in supportedArmLinuxOs
312 if (architecture == 'arm' || architecture == 'armlb') {
313 Utilities.setMachineAffinity(job, 'Ubuntu', 'arm-cross-latest')
316 if (options['is_build_only'] == true) {
317 Utilities.setMachineAffinity(job, os, 'arm64-cross-latest')
319 // Arm64 Test Machines
320 if (options['large_pages'] == false) {
321 Utilities.setMachineAffinity(job, os, 'arm64-small-page-size')
323 Utilities.setMachineAffinity(job, os, 'arm64-huge-page-size')
330 def static isGCStressRelatedTesting(def scenario) {
331 // The 'r2r_gcstress15' scenario is a basic scenario.
332 // Detect it and make it a GCStress related.
333 if (scenario == 'r2r_gcstress15')
338 def gcStressTestEnvVars = [ 'COMPlus_GCStress', 'COMPlus_ZapDisable', 'COMPlus_HeapVerify']
339 def scenarioName = scenario.toLowerCase()
340 def isGCStressTesting = false
341 Constants.jitStressModeScenarios[scenario].each{ k, v ->
342 if (k in gcStressTestEnvVars) {
343 isGCStressTesting = true;
346 return isGCStressTesting
349 def static isCoreFxScenario(def scenario) {
350 def corefx_prefix = 'corefx_'
351 if (scenario.length() < corefx_prefix.length()) {
354 return scenario.substring(0,corefx_prefix.length()) == corefx_prefix
357 def static isR2RBaselineScenario(def scenario) {
358 return (scenario == 'r2r')
361 def static isR2RStressScenario(def scenario) {
362 return Constants.r2rStressScenarios.containsKey(scenario)
365 def static isR2RScenario(def scenario) {
366 return isR2RBaselineScenario(scenario) || isR2RStressScenario(scenario)
369 def static isJitStressScenario(def scenario) {
370 return Constants.jitStressModeScenarios.containsKey(scenario)
373 def static isLongGc(def scenario) {
374 return (scenario == 'longgc' || scenario == 'gcsimulator')
377 def static isJitDiff(def scenario) {
378 return (scenario == 'jitdiff')
381 def static isGcReliabilityFramework(def scenario) {
382 return (scenario == 'gc_reliability_framework')
385 def static isArmWindowsScenario(def scenario) {
386 return Constants.validArmWindowsScenarios.containsKey(scenario)
389 def static setTestJobTimeOut(newJob, scenario) {
390 if (isGCStressRelatedTesting(scenario)) {
391 Utilities.setJobTimeout(newJob, 4320)
393 else if (isCoreFxScenario(scenario)) {
394 Utilities.setJobTimeout(newJob, 360)
396 else if (isJitStressScenario(scenario)) {
397 Utilities.setJobTimeout(newJob, 240)
399 else if (isR2RBaselineScenario(scenario)) {
400 Utilities.setJobTimeout(newJob, 240)
402 else if (isLongGc(scenario)) {
403 Utilities.setJobTimeout(newJob, 1440)
405 else if (isJitDiff(scenario)) {
406 Utilities.setJobTimeout(newJob, 240)
408 else if (isGcReliabilityFramework(scenario)) {
409 Utilities.setJobTimeout(newJob, 1440)
411 // Non-test jobs use the default timeout value.
414 def static getJobFolder(def scenario) {
415 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
418 if (scenario == 'illink') {
424 def static getStressModeDisplayName(def scenario) {
426 Constants.jitStressModeScenarios[scenario].each{ k, v ->
427 def prefixLength = 'COMPlus_'.length()
428 if (k.length() >= prefixLength) {
429 def modeName = k.substring(prefixLength, k.length())
430 displayStr += ' ' + modeName + '=' + v
434 if (isCoreFxScenario(scenario)) {
435 displayStr = ('CoreFx ' + displayStr).trim()
441 def static getR2RDisplayName(def scenario) {
442 // Assume the scenario name is one from the r2rStressScenarios dict, and remove its "r2r_" prefix.
443 def displayStr = scenario
444 def prefixLength = 'r2r_'.length()
445 if (displayStr.length() >= prefixLength) {
446 displayStr = "R2R " + displayStr.substring(prefixLength, displayStr.length())
447 } else if (scenario == 'r2r') {
453 // Generates the string for creating a file that sets environment variables
454 // that makes it possible to run stress modes. Writes the script to the file
455 // specified by the stepScriptLocation parameter.
456 def static genStressModeScriptStep(def os, def stressModeName, def stressModeVars, def stepScriptLocation) {
458 if (os == 'Windows_NT') {
459 // Timeout in ms, default is 10 minutes. For stress modes up this to 30 minutes.
460 // BUG?: it seems this is ignored, as this script will be run in an environment where
461 // environment variables will be discarded before this is used.
462 def timeout = 1800000
463 stepScript += "set __TestTimeout=${timeout}\r\n"
465 stepScript += "echo Creating TestEnv Script for ${stressModeName}\r\n"
466 stepScript += "if exist ${stepScriptLocation} del ${stepScriptLocation}\r\n"
468 // Create at least an empty script.
469 stepScript += "echo. > ${stepScriptLocation}\r\n"
471 stressModeVars.each{ k, v ->
472 // Write out what we are writing to the script file
473 stepScript += "echo Setting ${k}=${v}\r\n"
474 // Write out the set itself to the script file`
475 stepScript += "echo set ${k}=${v} >> ${stepScriptLocation}\r\n"
479 stepScript += "echo Setting variables for ${stressModeName}\n"
480 stepScript += "echo \\#\\!/usr/bin/env bash > ${stepScriptLocation}\n"
481 stressModeVars.each{ k, v ->
482 // Write out what we are writing to the script file
483 stepScript += "echo Setting ${k}=${v}\n"
484 // Write out the set itself to the script file`
485 stepScript += "echo export ${k}=${v} >> ${stepScriptLocation}\n"
487 stepScript += "chmod +x ${stepScriptLocation}\n"
493 // Append an existing script to a stress mode script already created by genStressModeScriptStep().
494 // Returns string of commands to do this.
495 def static appendStressModeScriptStep(def os, def appendScript, def stepScriptLocation) {
496 assert (os == 'Windows_NT')
498 stepScript += "echo Appending ${appendScript} to ${stepScriptLocation}\r\n"
499 stepScript += "type ${appendScript} >> ${stepScriptLocation}\r\n"
501 // Display the resulting script. This is useful when looking at the output log file.
502 stepScript += "echo Display the total script ${stepScriptLocation}\r\n"
503 stepScript += "type ${stepScriptLocation}\r\n"
508 // Calculates the name of the build job based on some typical parameters.
510 def static getJobName(def configuration, def architecture, def os, def scenario, def isBuildOnly) {
511 // If the architecture is x64, do not add that info into the build name.
512 // Need to change around some systems and other builds to pick up the right builds
515 def suffix = scenario != 'default' ? "_${scenario}" : '';
520 switch (architecture) {
522 if (scenario == 'default') {
523 // For now we leave x64 off of the name for compatibility with other jobs
524 baseName = configuration.toLowerCase() + '_' + os.toLowerCase()
526 else if (scenario == 'formatting') {
527 // we don't care about the configuration for the formatting job. It runs all configs
528 baseName = architecture.toLowerCase() + '_' + os.toLowerCase()
531 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
535 if (os.toLowerCase() == "windows_nt") {
536 // These are cross builds
537 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
540 // Defaults to a small page size set of machines.
541 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + "small_page_size"
545 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
548 // These are cross builds
551 baseName = 'armel_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
554 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
559 case 'x86_arm_altjit':
560 case 'x64_arm64_altjit':
561 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
564 println("Unknown architecture: ${architecture}");
569 return baseName + suffix
572 def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob, def bidailyCrossList) {
577 switch (architecture) {
581 if (architecture == 'x86' && os == 'Ubuntu') {
582 Utilities.addPeriodicTrigger(job, '@daily')
584 else if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
585 Utilities.addGithubPushTrigger(job)
590 case 'x86_arm_altjit':
591 case 'x64_arm64_altjit':
592 Utilities.addGithubPushTrigger(job)
595 // We would normally want a per-push trigger, but with limited hardware we can't keep up
596 Utilities.addPeriodicTrigger(job, "H H/4 * * *")
599 println("Unknown architecture: ${architecture}");
605 assert !(os in bidailyCrossList)
606 // r2r gets a push trigger for checked/release
607 if (configuration == 'Checked' || configuration == 'Release') {
608 assert (os == 'Windows_NT') || (os in Constants.crossList)
609 if (architecture == 'x64' && os != 'OSX10.12') {
610 //Flow jobs should be Windows, Ubuntu, OSX0.12, or CentOS
611 if (isFlowJob || os == 'Windows_NT') {
612 Utilities.addGithubPushTrigger(job)
614 // OSX10.12 r2r jobs should only run every 12 hours, not daily.
615 } else if (architecture == 'x64' && os == 'OSX10.12'){
617 Utilities.addPeriodicTrigger(job, 'H H/12 * * *')
620 // For x86, only add per-commit jobs for Windows
621 else if (architecture == 'x86' || architecture == 'x86lb') {
622 if (os == 'Windows_NT') {
623 Utilities.addGithubPushTrigger(job)
626 // arm64 r2r jobs should only run daily.
627 else if (architecture == 'arm64') {
628 if (os == 'Windows_NT') {
629 Utilities.addPeriodicTrigger(job, '@daily')
634 case 'r2r_jitstress1':
635 case 'r2r_jitstress2':
636 case 'r2r_jitstressregs1':
637 case 'r2r_jitstressregs2':
638 case 'r2r_jitstressregs3':
639 case 'r2r_jitstressregs4':
640 case 'r2r_jitstressregs8':
641 case 'r2r_jitstressregs0x10':
642 case 'r2r_jitstressregs0x80':
643 case 'r2r_jitstressregs0x1000':
644 case 'r2r_jitminopts':
645 case 'r2r_jitforcerelocs':
646 case 'r2r_gcstress15':
647 assert !(os in bidailyCrossList)
649 // GCStress=C is currently not supported on OS X
650 if (os == 'OSX10.12' && isGCStressRelatedTesting(scenario)) {
654 // GC Stress 15 r2r gets a push trigger for checked/release
655 if (configuration == 'Checked' || configuration == 'Release') {
656 assert (os == 'Windows_NT') || (os in Constants.crossList)
657 if (architecture == 'x64') {
658 //Flow jobs should be Windows, Ubuntu, OSX10.12, or CentOS
659 if (isFlowJob || os == 'Windows_NT') {
660 // Add a weekly periodic trigger
661 Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
664 // For x86, only add per-commit jobs for Windows
665 else if (architecture == 'x86') {
666 if (os == 'Windows_NT') {
667 Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
673 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
674 assert configuration == 'Release'
675 assert architecture == 'x64'
676 Utilities.addPeriodicTrigger(job, '@daily')
677 // TODO: Add once external email sending is available again
678 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
681 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
682 assert configuration == 'Release'
683 assert architecture == 'x64'
684 Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
685 // TODO: Add once external email sending is available again
686 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
688 case 'standalone_gc':
689 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
690 assert (configuration == 'Release' || configuration == 'Checked')
691 // TODO: Add once external email sending is available again
692 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
693 Utilities.addPeriodicTrigger(job, '@daily')
695 case 'gc_reliability_framework':
696 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
697 assert (configuration == 'Release' || configuration == 'Checked')
698 // Only triggered by phrase.
701 assert !(os in bidailyCrossList)
702 // ILASM/ILDASM roundtrip one gets a daily build, and only for release
703 if (architecture == 'x64' && configuration == 'Release') {
704 // We don't expect to see a job generated except in these scenarios
705 assert (os == 'Windows_NT') || (os in Constants.crossList)
706 if (isFlowJob || os == 'Windows_NT') {
707 Utilities.addPeriodicTrigger(job, '@daily')
712 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
713 assert configuration == 'Checked'
714 assert (architecture == 'x64' || architecture == 'x86')
715 Utilities.addGithubPushTrigger(job)
718 assert (os == 'Windows_NT' || os == "Ubuntu")
719 assert architecture == 'x64'
720 Utilities.addGithubPushTrigger(job)
722 case 'jitstressregs1':
723 case 'jitstressregs2':
724 case 'jitstressregs3':
725 case 'jitstressregs4':
726 case 'jitstressregs8':
727 case 'jitstressregs0x10':
728 case 'jitstressregs0x80':
729 case 'jitstressregs0x1000':
734 case 'jitstress2_jitstressregs1':
735 case 'jitstress2_jitstressregs2':
736 case 'jitstress2_jitstressregs3':
737 case 'jitstress2_jitstressregs4':
738 case 'jitstress2_jitstressregs8':
739 case 'jitstress2_jitstressregs0x10':
740 case 'jitstress2_jitstressregs0x80':
741 case 'jitstress2_jitstressregs0x1000':
742 case 'tailcallstress':
745 case 'corefx_baseline':
746 case 'corefx_minopts':
747 case 'corefx_jitstress1':
748 case 'corefx_jitstress2':
749 case 'corefx_jitstressregs1':
750 case 'corefx_jitstressregs2':
751 case 'corefx_jitstressregs3':
752 case 'corefx_jitstressregs4':
753 case 'corefx_jitstressregs8':
754 case 'corefx_jitstressregs0x10':
755 case 'corefx_jitstressregs0x80':
756 case 'corefx_jitstressregs0x1000':
758 if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
759 assert (os == 'Windows_NT') || (os in Constants.crossList)
760 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
761 if (os == 'Windows_NT') {
762 // We don't have enough ARM64 machines to run these more frequently than weekly.
763 Utilities.addPeriodicTrigger(job, '@weekly')
767 Utilities.addPeriodicTrigger(job, '@daily')
773 if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
774 assert (os == 'Windows_NT') || (os in Constants.crossList)
775 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
776 if (os == 'Windows_NT') {
777 Utilities.addPeriodicTrigger(job, '@daily')
779 // TODO: Add once external email sending is available again
780 // addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
783 Utilities.addPeriodicTrigger(job, '@weekly')
788 case 'gcstress0xc_zapdisable':
789 case 'gcstress0xc_zapdisable_jitstress2':
790 case 'gcstress0xc_zapdisable_heapverify1':
791 case 'gcstress0xc_jitstress1':
792 case 'gcstress0xc_jitstress2':
793 case 'gcstress0xc_minopts_heapverify1':
794 // GCStress=C is currently not supported on OS X
795 if (os != 'CentOS7.1' && os != 'OSX10.12' && !(os in bidailyCrossList)) {
796 assert (os == 'Windows_NT') || (os in Constants.crossList)
797 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
798 // TODO: Enable a periodic trigger after tests are updated.
799 // Utilities.addPeriodicTrigger(job, '@daily')
800 // TODO: Add once external email sending is available again
801 // addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
804 Utilities.addPeriodicTrigger(job, '@weekly')
810 // Testing on other operating systems TBD
811 assert (os == 'Windows_NT' || os == 'Ubuntu')
812 if (architecture == 'x64' || architecture == 'x86') {
813 if (configuration == 'Checked') {
814 Utilities.addPeriodicTrigger(job, '@daily')
819 case 'tieredcompilation':
820 case 'corefx_tieredcompilation':
821 // No periodic jobs just yet, still testing
825 println("Unknown scenario: ${scenario}");
832 // **************************
833 // Define the basic inner loop builds for PR and commit. This is basically just the set
834 // of coreclr builds over linux/osx 10.12/windows and debug/release/checked. In addition, the windows
835 // builds will do a couple extra steps.
836 // **************************
838 // Adds a trigger for the PR build if one is needed. If isFlowJob is true, then this is the
839 // flow job that rolls up the build and test for non-windows OS's. // If the job is a windows build only job,
840 // it's just used for internal builds
841 // If you add a job with a trigger phrase, please add that phrase to coreclr/Documentation/project-docs/ci-trigger-phrases.md
842 def static addTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob) {
843 if (isWindowsBuildOnlyJob) {
847 def bidailyCrossList = ['RHEL7.2', 'Debian8.4']
848 // Non pull request builds.
850 addNonPRTriggers(job, branch, isPR, architecture, os, configuration, scenario, isFlowJob, isWindowsBuildOnlyJob, bidailyCrossList)
877 // Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers
878 // We generally only have a distinct set of default triggers but a bunch of on-demand ones.
879 def osGroup = getOSGroup(os)
880 switch (architecture) {
881 case 'x64': // editor brace matching: {
882 if (scenario == 'formatting') {
883 assert configuration == 'Checked'
884 if (os == 'Windows_NT' || os == 'Ubuntu') {
885 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Innerloop Formatting")
891 // OpenSUSE, Debian & RedHat get trigger phrases for pri 0 build, and pri 1 build & test
894 if (scenario == 'default') {
896 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}.*")
901 assert scenario == 'default'
902 // Distinguish with the other architectures (arm and x86)
903 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}.*")
908 assert scenario == 'default'
909 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+.*")
912 if (scenario == 'illink') {
913 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
918 // Triggers on the non-flow jobs aren't necessary here
919 // Corefx testing uses non-flow jobs.
920 if (!isFlowJob && !isCoreFxScenario(scenario)) {
925 // OSX uses checked for default PR tests
926 if (configuration == 'Checked') {
928 assert !job.name.contains("centos")
929 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
933 if (configuration == 'Checked') {
934 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
938 if (configuration == 'Release') {
939 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
943 if (configuration == 'Release') {
944 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
948 if (configuration == 'Release') {
949 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
952 case 'standalone_gc':
953 if (configuration == 'Release' || configuration == 'Checked') {
954 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
957 case 'gc_reliability_framework':
958 if (configuration == 'Release' || configuration == 'Checked') {
959 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
963 if (isJitStressScenario(scenario)) {
964 def displayStr = getStressModeDisplayName(scenario)
965 assert (os == 'Windows_NT') || (os in Constants.crossList)
966 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
967 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
969 else if (isR2RScenario(scenario)) {
970 if (configuration == 'Release' || configuration == 'Checked') {
971 def displayStr = getR2RDisplayName(scenario)
972 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build and Test",
973 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
977 println("Unknown scenario: ${scenario}");
987 // CentOS uses checked for default PR tests while debug is build only
988 if (configuration == 'Debug') {
990 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build")
993 // Make sure this is a flow job to get build and test.
994 if (configuration == 'Checked' && isFlowJob) {
995 assert job.name.contains("flow")
997 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1001 if (isR2RScenario(scenario)) {
1002 if (configuration == 'Release' || configuration == 'Checked') {
1003 def displayStr = getR2RDisplayName(scenario)
1004 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1005 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1016 if (configuration == 'Checked') {
1017 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1021 if (configuration == 'Checked') {
1022 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1026 if (configuration == 'Release') {
1027 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1031 if (configuration == 'Release') {
1032 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1036 if (configuration == 'Release') {
1037 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1040 case 'standalone_gc':
1041 if (configuration == 'Release' || configuration == 'Checked') {
1042 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1045 case 'gc_reliability_framework':
1046 if (configuration == 'Release' || configuration == 'Checked') {
1047 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1051 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1054 if (isJitStressScenario(scenario)) {
1055 def displayStr = getStressModeDisplayName(scenario)
1056 assert (os == 'Windows_NT') || (os in Constants.crossList)
1057 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1058 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1060 else if (isR2RScenario(scenario)) {
1061 if (configuration == 'Release' || configuration == 'Checked') {
1062 def displayStr = getR2RDisplayName(scenario)
1063 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1064 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1068 println("Unknown scenario: ${scenario}");
1075 println("Unknown os: ${os}");
1080 // editor brace matching: }
1082 case 'arm': // editor brace matching: {
1086 if (architecture == 'armlb') { // Ubuntu arm is only for armlb currently
1087 assert scenario == 'default'
1090 azureVMAgentPostBuildAction {
1091 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1095 if ((os == 'Ubuntu' && configuration == 'Debug') || (os == 'Ubuntu16.04' && configuration == 'Debug')) {
1096 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build")
1099 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build",
1100 "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
1105 if (architecture == 'armlb') { // Tizen armel is only for armlb currently
1106 architecture='armel'
1109 azureVMAgentPostBuildAction {
1110 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1114 // Removing the regex will cause this to run on each PR.
1115 if (configuration == 'Checked') {
1116 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build and Test")
1119 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build",
1120 "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
1125 // Set up a private trigger
1126 def contextString = "${os} ${architecture} Cross ${configuration}"
1127 def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1128 if (scenario == 'default') {
1129 contextString += " Innerloop"
1130 triggerString += "\\W+Innerloop"
1133 contextString += " ${scenario}"
1134 triggerString += "\\W+${scenario}"
1137 if (configuration == 'Debug') {
1138 contextString += " Build"
1139 triggerString += "\\W+Build"
1141 contextString += " Build and Test"
1142 triggerString += "\\W+Build and Test"
1145 triggerString += ".*"
1149 // Only Checked is a default trigger.
1150 if (configuration == 'Checked')
1152 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
1156 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1160 // Stress jobs will use this code path.
1161 if (isArmWindowsScenario(scenario)) {
1162 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1168 println("NYI os: ${os}");
1173 // editor brace matching: }
1174 case 'arm64': // editor brace matching: {
1175 // Set up a private trigger
1176 def contextString = "${os} ${architecture} Cross ${configuration}"
1177 def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1178 if (scenario == 'default') {
1179 contextString += " Innerloop"
1180 triggerString += "\\W+Innerloop"
1183 contextString += " ${scenario}"
1184 triggerString += "\\W+${scenario}"
1187 if (configuration == 'Debug') {
1188 contextString += " Build"
1189 triggerString += "\\W+Build"
1191 contextString += " Build and Test"
1192 triggerString += "\\W+Build and Test"
1195 triggerString += ".*"
1202 if (configuration == 'Debug' && !isFlowJob) {
1203 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build")
1206 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", triggerString)
1211 if (isR2RScenario(scenario)) {
1212 if (configuration == 'Checked' || configuration == 'Release') {
1213 def displayStr = getR2RDisplayName(scenario)
1214 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build and Test", triggerString)
1221 assert isArmWindowsScenario(scenario)
1224 if (configuration == 'Debug' || configuration == 'Checked') {
1225 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
1228 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1232 // Stress jobs will use this code path.
1233 if (isArmWindowsScenario(scenario)) {
1234 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1240 println("NYI os: ${os}");
1245 // editor brace matching: }
1246 case 'x86': // editor brace matching: {
1247 assert ((os == 'Windows_NT') || ((os == 'Ubuntu') && (scenario == 'default')))
1248 if (os == 'Ubuntu') {
1249 // on-demand only for ubuntu x86
1250 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build",
1251 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
1256 if (configuration == 'Checked') {
1257 assert !job.name.contains("centos")
1258 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1261 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
1262 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
1266 if (configuration == 'Release') {
1267 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test",
1268 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1272 if (configuration == 'Release') {
1273 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test",
1274 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1278 if (configuration == 'Release') {
1279 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator",
1280 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1283 case 'standalone_gc':
1284 if (configuration == 'Release' || configuration == 'Checked') {
1285 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC",
1286 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1290 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1293 if (isJitStressScenario(scenario)) {
1294 def displayStr = getStressModeDisplayName(scenario)
1295 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1296 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1298 else if (isR2RScenario(scenario)) {
1299 if (configuration == 'Release' || configuration == 'Checked') {
1300 def displayStr = getR2RDisplayName(scenario)
1301 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1302 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1306 println("Unknown scenario: ${os} ${architecture} ${scenario}");
1312 // editor brace matching: }
1313 case 'x86lb': // editor brace matching: {
1314 assert (os == 'Windows_NT')
1317 def jit = 'legacy_backend'
1320 if (configuration == 'Checked') {
1321 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Build and Test",
1322 "(?i).*test\\W+${os}\\W+${arch}\\W+${jit}\\W+${configuration}\\W+Build and Test.*")
1326 println("Unknown scenario: ${os} ${arch} ${jit} ${scenario}");
1331 // editor brace matching: }
1332 case 'x64_arm64_altjit':
1333 case 'x86_arm_altjit': // editor brace matching: {
1334 assert (os == 'Windows_NT')
1337 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
1338 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+Build and Test.*")
1341 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${scenario}",
1342 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1346 // editor brace matching: }
1348 println("Unknown architecture: ${architecture}");
1354 def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR, def architecture, def configuration, def os, def isBuildOnly) {
1355 def buildCommands = [];
1356 def osGroup = getOSGroup(os)
1357 def lowerConfiguration = configuration.toLowerCase()
1360 if (scenario == 'default' && isPR == true) {
1364 def enableCorefxTesting = isCoreFxScenario(scenario)
1366 // Calculate the build steps, archival, and xunit results
1368 case 'Windows_NT': // editor brace matching: {
1369 switch (architecture) {
1373 case 'x86_arm_altjit':
1374 case 'x64_arm64_altjit':
1375 def arch = architecture
1377 if ((architecture == 'x86lb') || (architecture == 'x86_arm_altjit')) {
1380 else if (architecture == 'x64_arm64_altjit') {
1384 if (scenario == 'formatting') {
1385 buildCommands += "python -u tests\\scripts\\format.py -c %WORKSPACE% -o Windows_NT -a ${arch}"
1386 Utilities.addArchival(newJob, "format.patch", "", true, false)
1390 if (scenario == 'illink') {
1391 buildCommands += "tests\\scripts\\build_illink.cmd clone ${arch}"
1394 // If it is a release build for windows, ensure PGO is used, else fail the build
1395 if ((lowerConfiguration == 'release') &&
1396 (scenario in Constants.basicScenarios) &&
1397 (architecture != 'x86lb') &&
1398 (architecture != 'x86_arm_altjit') &&
1399 (architecture != 'x64_arm64_altjit')) {
1401 buildOpts += ' -enforcepgo'
1404 if (enableCorefxTesting) {
1405 buildOpts += ' skiptests';
1407 buildOpts += " -priority=${priority}"
1410 // Set __TestIntermediateDir to something short. If __TestIntermediateDir is already set, build-test.cmd will
1411 // output test binaries to that directory. If it is not set, the binaries are sent to a default directory whose name is about
1412 // 35 characters long.
1414 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${arch} ${buildOpts}"
1417 def runtestArguments = ''
1418 def testOpts = 'collectdumps'
1420 if (isR2RScenario(scenario)) {
1422 // If this is a ReadyToRun scenario, pass 'crossgen' or 'crossgenaltjit'
1423 // to cause framework assemblies to be crossgen'ed. Pass 'runcrossgentests'
1424 // to cause the tests to be crossgen'ed.
1426 if ((architecture == 'x86_arm_altjit') || (architecture == 'x64_arm64_altjit')) {
1427 testOpts += ' crossgenaltjit protononjit.dll'
1429 testOpts += ' crossgen'
1432 testOpts += ' runcrossgentests'
1434 if (scenario == 'r2r_jitstress1') {
1435 testOpts += ' jitstress 1'
1437 else if (scenario == 'r2r_jitstress2') {
1438 testOpts += ' jitstress 2'
1440 else if (scenario == 'r2r_jitstressregs1') {
1441 testOpts += ' jitstressregs 1'
1443 else if (scenario == 'r2r_jitstressregs2') {
1444 testOpts += ' jitstressregs 2'
1446 else if (scenario == 'r2r_jitstressregs3') {
1447 testOpts += ' jitstressregs 3'
1449 else if (scenario == 'r2r_jitstressregs4') {
1450 testOpts += ' jitstressregs 4'
1452 else if (scenario == 'r2r_jitstressregs8') {
1453 testOpts += ' jitstressregs 8'
1455 else if (scenario == 'r2r_jitstressregs0x10') {
1456 testOpts += ' jitstressregs 0x10'
1458 else if (scenario == 'r2r_jitstressregs0x80') {
1459 testOpts += ' jitstressregs 0x80'
1461 else if (scenario == 'r2r_jitstressregs0x1000') {
1462 testOpts += ' jitstressregs 0x1000'
1464 else if (scenario == 'r2r_jitminopts') {
1465 testOpts += ' jitminopts'
1467 else if (scenario == 'r2r_jitforcerelocs') {
1468 testOpts += ' jitforcerelocs'
1470 else if (scenario == 'r2r_gcstress15') {
1471 testOpts += ' gcstresslevel 0xF'
1474 else if (scenario == 'jitdiff') {
1475 testOpts += ' jitdisasm crossgen'
1477 else if (scenario == 'ilrt') {
1478 testOpts += ' ilasmroundtrip'
1480 else if (isLongGc(scenario)) {
1481 testOpts += " ${scenario} sequential"
1483 else if (scenario == 'standalone_gc') {
1484 testOpts += ' gcname clrgc.dll'
1486 else if (scenario == 'illink') {
1487 testOpts += " link %WORKSPACE%\\linker\\linker\\bin\\netcore_Release\\netcoreapp2.0\\win10-${arch}\\publish\\illink.exe"
1490 // If we are running a stress mode, we should write out the set of key
1491 // value env pairs to a file at this point and then we'll pass that to runtest.cmd
1493 def envScriptPath = ''
1494 if (isJitStressScenario(scenario)) {
1495 def buildCommandsStr = ''
1496 envScriptPath = "%WORKSPACE%\\SetStressModes.bat"
1497 buildCommandsStr += genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], envScriptPath)
1498 if (architecture == 'x86lb') {
1499 buildCommandsStr += appendStressModeScriptStep(os, "%WORKSPACE%\\tests\\legacyjit_x86_testenv.cmd", envScriptPath)
1501 else if (architecture == 'x86_arm_altjit') {
1502 buildCommandsStr += appendStressModeScriptStep(os, "%WORKSPACE%\\tests\\x86_arm_altjit.cmd", envScriptPath)
1504 else if (architecture == 'x64_arm64_altjit') {
1505 buildCommandsStr += appendStressModeScriptStep(os, "%WORKSPACE%\\tests\\x64_arm64_altjit.cmd", envScriptPath)
1508 // Note that buildCommands is an array of individually executed commands; we want all the commands used to
1509 // create the SetStressModes.bat script to be executed together, hence we accumulate them as strings
1510 // into a single script.
1511 buildCommands += buildCommandsStr
1513 else if (architecture == 'x86lb') {
1514 envScriptPath = "%WORKSPACE%\\tests\\legacyjit_x86_testenv.cmd"
1516 else if (architecture == 'x86_arm_altjit') {
1517 envScriptPath = "%WORKSPACE%\\tests\\x86_arm_altjit.cmd"
1519 else if (architecture == 'x64_arm64_altjit') {
1520 envScriptPath = "%WORKSPACE%\\tests\\x64_arm64_altjit.cmd"
1522 if (envScriptPath != '') {
1523 testOpts += " TestEnv ${envScriptPath}"
1526 runtestArguments = "${lowerConfiguration} ${arch} ${testOpts}"
1528 if (enableCorefxTesting) {
1529 def workspaceRelativeFxRoot = "_/fx"
1530 def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
1532 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}"
1534 setTestJobTimeOut(newJob, scenario)
1536 // Archive and process (only) the test results
1537 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1538 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1540 //Archive additional build stuff to diagnose why my attempt at fault injection isn't causing CI to fail
1541 Utilities.addArchival(newJob, "SetStressModes.bat", "", true, false)
1542 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/testhost/**", "", true, false)
1544 else if (isGcReliabilityFramework(scenario)) {
1545 buildCommands += "tests\\runtest.cmd ${runtestArguments} GenerateLayoutOnly"
1546 buildCommands += "tests\\scripts\\run-gc-reliability-framework.cmd ${arch} ${configuration}"
1549 buildCommands += "tests\\runtest.cmd ${runtestArguments}"
1553 if (!enableCorefxTesting) {
1554 // Run the rest of the build
1555 // Build the mscorlib for the other OS's
1556 buildCommands += "build.cmd ${lowerConfiguration} ${arch} linuxmscorlib"
1557 buildCommands += "build.cmd ${lowerConfiguration} ${arch} osxmscorlib"
1559 if (arch == "x64") {
1560 buildCommands += "build.cmd ${lowerConfiguration} arm64 linuxmscorlib"
1563 // Zip up the tests directory so that we don't use so much space/time copying
1564 // 10s of thousands of files around.
1565 buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${arch}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
1567 if (!isJitStressScenario(scenario)) {
1568 // For windows, pull full test results and test drops for x86/x64.
1569 // No need to pull for stress mode scenarios (downstream builds use the default scenario)
1570 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1573 if (scenario == 'jitdiff') {
1574 // retrive jit-dasm output for base commit, and run jit-diff
1576 // if this is a build only job, we want to keep the default (build) artifacts for the flow job
1577 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**")
1582 Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true)
1583 setTestJobTimeOut(newJob, scenario)
1589 assert isArmWindowsScenario(scenario)
1591 def machineAffinityOptions = ['use_arm64_build_machine' : true]
1592 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
1595 setTestJobTimeOut(newJob, scenario)
1597 if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc'))
1599 // Up the timeout for arm checked testing only.
1600 // Keep the longer timeout for gcstress.
1601 Utilities.setJobTimeout(newJob, 240)
1604 def buildArchitecture = 'arm'
1606 // For 'arm' (the RyuJIT/arm32 architecture), tell build.cmd to use RyuJIT/arm32 for crossgen compilation.
1607 // RyuJIT/arm32 is currently not the default JIT; it is an aljit. So, this is a special case.
1608 def armCrossgenOpt = ''
1609 if (architecture == 'arm') {
1610 armCrossgenOpt = '-altjitcrossgen'
1613 // This is now a build only job. Do not run tests. Use the flow job.
1614 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${buildArchitecture} -priority=${priority} ${armCrossgenOpt}"
1616 // Zip up the tests directory so that we don't use so much space/time copying
1617 // 10s of thousands of files around.
1618 buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${buildArchitecture}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
1621 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1624 assert isArmWindowsScenario(scenario)
1626 def machineAffinityOptions = ['use_arm64_build_machine' : true]
1627 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
1630 setTestJobTimeOut(newJob, scenario)
1631 if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc'))
1633 // Up the timeout for arm checked testing only.
1634 // Keep the longer timeout for gcstress.
1635 Utilities.setJobTimeout(newJob, 240)
1638 // This is now a build only job. Do not run tests. Use the flow job.
1639 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2 -priority=${priority}"
1641 // Zip up the tests directory so that we don't use so much space/time copying
1642 // 10s of thousands of files around.
1643 buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${architecture}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
1646 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1649 println("Unknown architecture: ${architecture}");
1654 // editor brace matching: }
1663 case 'Fedora24': // editor brace matching: {
1664 switch (architecture) {
1667 if (architecture == 'x86' && os == 'Ubuntu') {
1668 // build and PAL test
1669 buildCommands += "./tests/scripts/x86_ci_script.sh --buildConfig=${lowerConfiguration}"
1670 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
1674 if (scenario == 'formatting') {
1675 buildCommands += "python tests/scripts/format.py -c \${WORKSPACE} -o Linux -a ${architecture}"
1676 Utilities.addArchival(newJob, "format.patch", "", true, false)
1680 if (scenario == 'illink') {
1681 assert(os == 'Ubuntu')
1682 buildCommands += "./tests/scripts/build_illink.sh --clone --arch=${architecture}"
1685 if (!enableCorefxTesting) {
1686 // We run pal tests on all OS but generate mscorlib (and thus, nuget packages)
1687 // only on supported OS platforms.
1688 def bootstrapRid = Utilities.getBoostrapPublishRid(os)
1689 def bootstrapRidEnv = bootstrapRid != null ? "__PUBLISH_RID=${bootstrapRid} " : ''
1690 buildCommands += "${bootstrapRidEnv}./build.sh verbose ${lowerConfiguration} ${architecture}"
1691 buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout"
1694 setTestJobTimeOut(newJob, scenario)
1695 // Basic archiving of the build
1696 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
1698 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
1701 // Corefx stress testing
1702 assert os == 'Ubuntu'
1703 assert architecture == 'x64'
1704 assert lowerConfiguration == 'checked'
1705 assert isJitStressScenario(scenario)
1708 buildCommands += "./build.sh verbose ${lowerConfiguration} ${architecture}"
1710 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
1711 buildCommands += genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], scriptFileName)
1713 // Build and text corefx
1714 def workspaceRelativeFxRoot = "_/fx"
1715 def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRoot}"
1717 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}"
1719 setTestJobTimeOut(newJob, scenario)
1721 // Archive and process (only) the test results
1722 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1723 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1727 if (!enableCorefxTesting) {
1728 buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs ./build.sh verbose ${lowerConfiguration} ${architecture} cross clang3.8"
1730 // HACK -- Arm64 does not have corefx jobs yet.
1731 buildCommands += "git clone https://github.com/dotnet/corefx fx"
1732 buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs-corefx ./fx/build-native.sh -release -buildArch=arm64 -- verbose cross clang3.8"
1733 buildCommands += "mkdir ./bin/Product/Linux.arm64.${configuration}/corefxNative"
1734 buildCommands += "cp fx/bin/Linux.arm64.Release/native/* ./bin/Product/Linux.arm64.${configuration}/corefxNative"
1736 setTestJobTimeOut(newJob, scenario)
1737 // Basic archiving of the build
1738 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
1742 // Cross builds for ARM runs on Ubuntu, Ubuntu16.04 and Tizen currently
1743 assert (os == 'Ubuntu') || (os == 'Ubuntu16.04') || (os == 'Tizen')
1745 // default values for Ubuntu
1747 def linuxCodeName="trusty"
1748 if (os == 'Ubuntu16.04') {
1749 linuxCodeName="xenial"
1751 else if (os == 'Tizen') {
1753 linuxCodeName="tizen"
1756 // Unzip the Windows test binaries first. Exit with 0
1757 buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0"
1759 // Unpack the corefx binaries
1760 buildCommands += "mkdir ./bin/CoreFxBinDir"
1761 buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
1762 if (os != 'Tizen') {
1763 buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
1765 // Test environment emulation using docker and qemu has some problem to use lttng library.
1766 // We should remove libcoreclrtraceptprovider.so to avoid test hang.
1767 if (os == 'Ubuntu') {
1768 buildCommands += "rm -f -v ./bin/CoreFxBinDir/libcoreclrtraceptprovider.so"
1771 // Call the ARM CI script to cross build and test using docker
1772 buildCommands += """./tests/scripts/arm32_ci_script.sh \\
1775 --linuxCodeName=${linuxCodeName} \\
1776 --buildConfig=${lowerConfiguration} \\
1777 --testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\
1778 --coreFxBinDir=./bin/CoreFxBinDir \\
1779 --testDirFile=./tests/testsRunningInsideARM.txt"""
1781 // Basic archiving of the build, no pal tests
1782 Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/**/.nuget/**")
1785 println("Unknown architecture: ${architecture}");
1790 // editor brace matching: }
1792 println("Unknown os: ${os}");
1797 return buildCommands
1800 // Additional scenario which can alter behavior
1802 Constants.allScenarios.each { scenario ->
1803 [true, false].each { isPR ->
1804 Constants.architectureList.each { architecture ->
1805 Constants.configurationList.each { configuration ->
1806 Constants.osList.each { os ->
1807 // If the OS is Windows_NT_BuildOnly, set the isBuildOnly flag to true
1808 // and reset the os to Windows_NT
1809 def isBuildOnly = false
1810 if (os == 'Windows_NT_BuildOnly') {
1815 // Tizen is only supported for arm legacy_backend architecture
1816 if (os == 'Tizen' && architecture != 'armlb') {
1820 // Skip totally unimplemented (in CI) configurations.
1821 switch (architecture) {
1823 if (os == 'Ubuntu16.04') {
1827 // Windows and Ubuntu only
1828 if ((os != 'Windows_NT' && os != 'Ubuntu') || isBuildOnly) {
1833 if ((os != 'Ubuntu') && (os != 'Ubuntu16.04') && (os != 'Tizen') && (os != 'Windows_NT')) {
1838 if (os != 'Windows_NT') {
1843 if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
1848 case 'x86_arm_altjit':
1849 case 'x64_arm64_altjit':
1850 if (os != 'Windows_NT') {
1855 // Everything implemented
1858 println("Unknown architecture: ${architecture}")
1863 // Skip scenarios (blanket skipping for jit stress modes, which are good most everywhere
1864 // with checked builds)
1865 if (isJitStressScenario(scenario)) {
1866 if (configuration != 'Checked') {
1870 // Since these are just execution time differences,
1871 // skip platforms that don't execute the tests here (Windows_NT only)
1872 def isEnabledOS = (os == 'Windows_NT') || (os == 'Ubuntu' && isCoreFxScenario(scenario))
1873 if (!isEnabledOS || isBuildOnly) {
1877 switch (architecture) {
1880 case 'x86_arm_altjit':
1881 case 'x64_arm64_altjit':
1882 // x86 ubuntu: default only
1883 if ((os == 'Ubuntu') && (architecture == 'x86')) {
1886 // Windows: Everything implemented
1890 // arm, arm64, armlb: stress is handled through flow jobs.
1891 // x86lb: No stress modes for legacy jit. (There's no technical reason we couldn't allow these.)
1895 else if (isR2RScenario(scenario)) {
1896 if (os != 'Windows_NT') {
1899 // R2R test runs are not implemented for arm/armlb/arm64.
1900 if (architecture == 'arm' || architecture == 'armlb' || architecture == 'arm64') {
1903 // Stress scenarios only run with Checked builds, not Release (they would work with Debug, but be slow).
1904 if ((configuration != 'Checked') && isR2RStressScenario(scenario)) {
1912 // The ilrt build isn't necessary except for Windows_NT2003. Non-Windows NT uses
1913 // the default scenario build
1914 if (os != 'Windows_NT') {
1918 if (architecture != 'x64') {
1922 if (configuration != 'Release') {
1927 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
1930 if (architecture != 'x64') {
1933 if (configuration != 'Checked') {
1939 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
1942 if (architecture != 'x64') {
1945 if (configuration != 'Release') {
1949 case 'gc_reliability_framework':
1950 case 'standalone_gc':
1951 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
1955 if (architecture != 'x64') {
1959 if (configuration != 'Release' && configuration != 'Checked') {
1963 // We only run Windows and Ubuntu x64 Checked for formatting right now
1965 if (os != 'Windows_NT' && os != 'Ubuntu') {
1968 if (architecture != 'x64') {
1971 if (configuration != 'Checked') {
1979 if (os != 'Windows_NT' && (os != 'Ubuntu' || architecture != 'x64')) {
1982 if (architecture != 'x64' && architecture != 'x86') {
1993 println("Unknown scenario: ${scenario}")
1999 // For altjit, don't do any scenarios that don't change compilation. That is, scenarios that only change
2000 // runtime behavior, not compile-time behavior, are not interesting.
2001 switch (architecture) {
2002 case 'x86_arm_altjit':
2003 case 'x64_arm64_altjit':
2004 if (isGCStressRelatedTesting(scenario)) {
2012 // Only implement 'default' for x86lb.
2013 if ((architecture == 'x86lb') && (scenario != 'default')) {
2018 def lowerConfiguration = configuration.toLowerCase()
2019 def jobName = getJobName(configuration, architecture, os, scenario, isBuildOnly)
2020 def folderName = getJobFolder(scenario)
2022 // Create the new job
2023 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folderName)) {}
2025 def machineAffinityOptions = null
2027 if (os != 'Windows_NT') {
2028 machineAffinityOptions = architecture == 'arm64' ? ['is_build_only': true] : null
2031 machineAffinityOptions = (architecture == 'arm' || architecture == 'armlb' || architecture == 'arm64') ? ['use_arm64_build_machine': false] : null
2034 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
2036 // Add all the standard options
2037 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
2038 addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly)
2040 def buildCommands = calculateBuildCommands(newJob, scenario, branch, isPR, architecture, configuration, os, isBuildOnly)
2041 def osGroup = getOSGroup(os)
2045 if (os == 'Windows_NT') {
2046 buildCommands.each { buildCommand ->
2047 batchFile(buildCommand)
2051 // Setup corefx and Windows test binaries for Linux cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
2052 if ( architecture == 'armlb' && ( os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen')) {
2053 // Cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
2054 // Define the Windows Tests and Corefx build job names
2055 def WindowTestsName = projectFolder + '/' +
2056 Utilities.getFullJobName(project,
2057 getJobName(lowerConfiguration,
2063 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' +
2064 Utilities.getFolderName(branch)
2066 // Copy the Windows test binaries and the Corefx build binaries
2067 copyArtifacts(WindowTestsName) {
2068 includePatterns('bin/tests/tests.zip')
2070 latestSuccessful(true)
2075 def corefx_os = 'linux'
2076 if (os == 'Tizen') {
2081 // Let's use release CoreFX to test checked CoreCLR,
2082 // because we do not generate checked CoreFX in CoreFX CI yet.
2083 def corefx_lowerConfiguration = lowerConfiguration
2084 if ( lowerConfiguration == 'checked' ) {
2085 corefx_lowerConfiguration='release'
2088 copyArtifacts("${corefxFolder}/${corefx_os}_${arm_abi}_cross_${corefx_lowerConfiguration}") {
2089 includePatterns('bin/build.tar.gz')
2091 latestSuccessful(true)
2096 buildCommands.each { buildCommand ->
2110 // Create jobs requiring flow jobs. This includes x64 non-Windows, arm64 Ubuntu, and arm/arm64/armlb Windows.
2111 Constants.allScenarios.each { scenario ->
2112 [true, false].each { isPR ->
2113 ['arm', 'armlb', 'x64', 'arm64'].each { architecture ->
2114 Constants.crossList.each { os ->
2115 if (architecture == 'arm64') {
2116 if (os != "Ubuntu" && os != "Windows_NT") {
2119 } else if (architecture == 'arm' || architecture == 'armlb') {
2120 if (os != 'Windows_NT') {
2125 def validWindowsNTCrossArches = ["arm", "armlb", "arm64"]
2127 if (os == "Windows_NT" && !(architecture in validWindowsNTCrossArches)) {
2131 Constants.configurationList.each { configuration ->
2133 // First, filter based on OS.
2135 if (os == 'Windows_NT') {
2136 if (!isArmWindowsScenario(scenario)) {
2141 if (architecture == 'arm64') {
2142 if (scenario != 'default' && scenario != 'r2r' && scenario != 'gcstress0x3' && scenario != 'gcstress0xc') {
2148 // For CentOS, we only want Checked/Release builds.
2149 if (os == 'CentOS7.1') {
2150 if (configuration != 'Checked' && configuration != 'Release') {
2153 if (scenario != 'default' && !isR2RScenario(scenario) && !isJitStressScenario(scenario)) {
2158 // For RedHat and Debian, we only do Release builds.
2159 else if (os == 'RHEL7.2' || os == 'Debian8.4') {
2160 if (configuration != 'Release') {
2163 if (scenario != 'default') {
2168 // Next, filter based on scenario.
2170 if (isJitStressScenario(scenario)) {
2171 if (configuration != 'Checked') {
2174 // CoreFx JIT stress tests currently not implemented for flow jobs.
2175 if (isCoreFxScenario(scenario)) {
2179 else if (isR2RBaselineScenario(scenario)) {
2180 if (configuration != 'Checked' && configuration != 'Release') {
2184 else if (isR2RStressScenario(scenario)) {
2185 if (configuration != 'Checked') {
2195 // Long GC tests take a long time on non-Release builds
2196 // ilrt is also Release only
2197 if (configuration != 'Release') {
2202 if (configuration != 'Checked') {
2206 case 'gc_reliability_framework':
2207 case 'standalone_gc':
2208 if (configuration != 'Release' && configuration != 'Checked') {
2215 if (os != 'Windows_NT' && os != 'Ubuntu') {
2223 println("Unknown scenario: ${scenario}")
2229 // Done filtering. Now, create the jobs.
2231 def lowerConfiguration = configuration.toLowerCase()
2232 def osGroup = getOSGroup(os)
2233 def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
2235 def inputCoreCLRBuildName = projectFolder + '/' +
2236 Utilities.getFullJobName(project, getJobName(configuration, architecture, os, 'default', false), isPR)
2238 // If this is a stress scenario, there isn't any difference in the build job, so we didn't create a build only
2239 // job for Windows_NT specific to that stress mode. Just copy from the default scenario.
2240 def testBuildScenario = scenario
2241 if (isJitStressScenario(testBuildScenario) || isR2RScenario(testBuildScenario) || isLongGc(testBuildScenario)) {
2242 testBuildScenario = 'default'
2245 def inputWindowsTestBuildArch = architecture
2246 if (architecture == "arm64" && os != "Windows_NT") {
2247 // Use the x64 test build for arm64 unix
2248 inputWindowsTestBuildArch = "x64"
2251 def inputWindowTestsBuildName = projectFolder + '/' +
2252 Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', testBuildScenario, true), isPR)
2254 // Enable Server GC for Ubuntu PR builds
2255 def serverGCString = ''
2256 if (os == 'Ubuntu' && isPR) {
2257 serverGCString = '--useServerGC'
2262 if (isR2RScenario(scenario)) {
2264 testOpts += ' --crossgen --runcrossgentests'
2266 if (scenario == 'r2r_jitstress1') {
2267 testOpts += ' --jitstress=1'
2269 else if (scenario == 'r2r_jitstress2') {
2270 testOpts += ' --jitstress=2'
2272 else if (scenario == 'r2r_jitstressregs1') {
2273 testOpts += ' --jitstressregs=1'
2275 else if (scenario == 'r2r_jitstressregs2') {
2276 testOpts += ' --jitstressregs=2'
2278 else if (scenario == 'r2r_jitstressregs3') {
2279 testOpts += ' --jitstressregs=3'
2281 else if (scenario == 'r2r_jitstressregs4') {
2282 testOpts += ' --jitstressregs=4'
2284 else if (scenario == 'r2r_jitstressregs8') {
2285 testOpts += ' --jitstressregs=8'
2287 else if (scenario == 'r2r_jitstressregs0x10') {
2288 testOpts += ' --jitstressregs=0x10'
2290 else if (scenario == 'r2r_jitstressregs0x80') {
2291 testOpts += ' --jitstressregs=0x80'
2293 else if (scenario == 'r2r_jitstressregs0x1000') {
2294 testOpts += ' --jitstressregs=0x1000'
2296 else if (scenario == 'r2r_jitminopts') {
2297 testOpts += ' --jitminopts'
2299 else if (scenario == 'r2r_jitforcerelocs') {
2300 testOpts += ' --jitforcerelocs'
2302 else if (scenario == 'r2r_gcstress15') {
2303 testOpts += ' --gcstresslevel=0xF'
2306 else if (scenario == 'jitdiff') {
2307 testOpts += ' --jitdisasm --crossgen'
2309 else if (scenario == 'illink') {
2310 testOpts += ' --link=\$WORKSPACE/linker/linker/bin/netcore_Release/netcoreapp2.0/ubuntu-x64/publish/illink'
2312 else if (isLongGc(scenario)) {
2313 // Long GC tests behave very poorly when they are not
2314 // the only test running (many of them allocate until OOM).
2315 testOpts += ' --sequential'
2317 // A note - runtest.sh does have "--long-gc" and "--gcsimulator" options
2318 // for running long GC and GCSimulator tests, respectively. We don't use them
2319 // here because using a playlist file produces much more readable output on the CI machines
2320 // and reduces running time.
2322 // The Long GC playlist contains all of the tests that are
2323 // going to be run. The GCSimulator playlist contains all of
2324 // the GC simulator tests.
2325 if (scenario == 'longgc') {
2326 testOpts += ' --long-gc --playlist=./tests/longRunningGcTests.txt'
2328 else if (scenario == 'gcsimulator') {
2329 testOpts += ' --gcsimulator --playlist=./tests/gcSimulatorTests.txt'
2332 else if (isGcReliabilityFramework(scenario)) {
2333 testOpts += ' --build-overlay-only'
2335 else if (scenario == 'standalone_gc') {
2336 if (osGroup == 'OSX') {
2337 testOpts += ' --gcname=libclrgc.dylib'
2339 else if (osGroup == 'Linux') {
2340 testOpts += ' --gcname=libclrgc.so'
2343 println("Unexpected OS group: ${osGroup} for os ${os}")
2348 def windowsArmJob = (os == "Windows_NT" && architecture in validWindowsNTCrossArches)
2350 def folder = getJobFolder(scenario)
2351 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folder)) {
2352 // Add parameters for the inputs
2354 if (windowsArmJob == true) {
2356 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2361 stringParam('CORECLR_WINDOWS_BUILD', '', 'Build number to copy CoreCLR windows test binaries from')
2362 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2367 // Set up the copies
2369 // Coreclr build containing the tests and mscorlib
2371 if (windowsArmJob != true) {
2372 copyArtifacts(inputWindowTestsBuildName) {
2373 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2375 buildNumber('${CORECLR_WINDOWS_BUILD}')
2380 // Coreclr build we are trying to test
2382 copyArtifacts(inputCoreCLRBuildName) {
2383 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2385 buildNumber('${CORECLR_BUILD}')
2389 // Windows CoreCLR Arm(64) will restore corefx
2390 // packages correctly.
2392 // In addition, test steps are entirely different
2393 // because we do not have a unified runner
2394 if (windowsArmJob != true) {
2395 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(branch)
2397 // Corefx components. We now have full stack builds on all distros we test here, so we can copy straight from CoreFX jobs.
2399 if (os == 'Ubuntu') {
2400 osJobName = 'ubuntu14.04'
2403 osJobName = os.toLowerCase()
2405 copyArtifacts("${corefxFolder}/${osJobName}_release") {
2406 includePatterns('bin/build.tar.gz')
2408 latestSuccessful(true)
2412 shell ("mkdir ./bin/CoreFxBinDir")
2413 // Unpack the corefx binaries
2414 shell("tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir")
2416 // HACK -- Arm64 does not have corefx jobs yet.
2417 // Clone corefx and build the native packages overwriting the x64 packages.
2418 if (architecture == 'arm64') {
2419 shell("cp ./bin/Product/Linux.arm64.${configuration}/corefxNative/* ./bin/CoreFxBinDir")
2420 shell("chmod +x ./bin/Product/Linux.arm64.${configuration}/corerun")
2423 // Unzip the tests first. Exit with 0
2424 shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.${architecture}.${configuration} || exit 0")
2426 // Execute the tests
2427 // If we are running a stress mode, we'll set those variables first
2429 if (isJitStressScenario(scenario)) {
2430 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
2431 def createScriptCmds = genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], scriptFileName)
2432 shell("${createScriptCmds}")
2433 testEnvOpt = "--test-env=" + scriptFileName
2436 if (isGCStressRelatedTesting(scenario)) {
2437 shell('./init-tools.sh')
2440 shell("""./tests/runtest.sh \\
2441 --testRootDir=\"\${WORKSPACE}/bin/tests/Windows_NT.${architecture}.${configuration}\" \\
2442 --testNativeBinDir=\"\${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
2443 --coreClrBinDir=\"\${WORKSPACE}/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
2444 --mscorlibDir=\"\${WORKSPACE}/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
2445 --coreFxBinDir=\"\${WORKSPACE}/bin/CoreFxBinDir\" \\
2446 --limitedDumpGeneration ${testEnvOpt} ${serverGCString} ${testOpts}""")
2448 if (isGcReliabilityFramework(scenario)) {
2449 // runtest.sh doesn't actually execute the reliability framework - do it here.
2450 if (serverGCString != '') {
2451 shell("export COMPlus_gcServer=1")
2454 shell("./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")
2458 else { // windowsArmJob == true
2460 batchFile("powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('bin\\tests\\tests.zip', 'bin\\tests\\${osGroup}.${architecture}.${configuration}')")
2462 // Build the build commands
2463 def buildCommands = ""
2465 def coreRootLocation = "%WORKSPACE%\\bin\\tests\\Windows_NT.${architecture}.${configuration}\\Tests\\Core_Root"
2466 def addEnvVariable = { variable, value -> buildCommands += "set ${variable}=${value}\r\n"}
2467 def addCommand = { cmd -> buildCommands += "${cmd}\r\n"}
2470 addEnvVariable("CORE_ROOT", coreRootLocation)
2472 addEnvVariable("COMPlus_NoGuiOnAssert", "1")
2473 addEnvVariable("COMPlus_ContinueOnAssert", "0")
2476 if (architecture == "arm") {
2477 // **This is an AltJit**
2479 addEnvVariable("COMPlus_AltJit", "*")
2480 addEnvVariable("COMPlus_AltJitNgen", "*")
2481 addEnvVariable("COMPlus_AltJitName", "protojit.dll")
2482 addEnvVariable("COMPlus_AltJitAssertOnNYI", "1")
2485 // If we are running a stress mode, we'll set those variables as well
2486 def stressValues = null
2487 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
2488 if (isJitStressScenario(scenario)) {
2489 stressValues = Constants.jitStressModeScenarios[scenario]
2492 stressValues = Constants.r2rStressScenarios[scenario]
2495 stressValues.each { key, value ->
2496 addEnvVariable(key, value)
2500 // TODO: do whatever is necessary to support enabling R2R testing. Environment variables,
2501 // crossgen the framework assemblies, etc.
2503 // Create the smarty command
2504 def smartyCommand = "C:\\Tools\\Smarty.exe /noecid /noie /workers 9 /inc EXPECTED_PASS "
2505 def addSmartyFlag = { flag -> smartyCommand += flag + " "}
2506 def addExclude = { exclude -> addSmartyFlag("/exc " + exclude)}
2508 def addArchSpecificExclude = { architectureToExclude, exclude -> if (architectureToExclude == "arm") { addExclude("PROTOJIT_" + exclude) } else { addExclude(exclude) } }
2510 if (architecture == "arm") {
2511 addExclude("PROTOJIT_FAIL")
2514 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
2515 def failTag = "JITSTRESS_FAIL"
2516 def excludeTag = "JITSTRESS_EXCLUDE"
2518 if (scenario.contains('gc')) {
2519 failTag = "GCSTRESS_FAIL"
2520 excludeTag = "GCSTRESS_EXCLUDE"
2523 addArchSpecificExclude(architecture, failTag)
2524 addArchSpecificExclude(architecture, excludeTag)
2531 smartyCommand += "/lstFile Tests.lst"
2533 def testListArch = [
2539 def archLocation = testListArch[architecture]
2541 addCommand("copy %WORKSPACE%\\tests\\${archLocation}\\Tests.lst bin\\tests\\${osGroup}.${architecture}.${configuration}")
2542 addCommand("pushd bin\\tests\\${osGroup}.${architecture}.${configuration}")
2543 addCommand("${smartyCommand}")
2545 batchFile(buildCommands)
2550 if (scenario == 'jitdiff') {
2551 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/dasm/**")
2554 // Experimental: If on Ubuntu 14.04, then attempt to pull in crash dump links
2555 if (os in ['Ubuntu']) {
2556 SummaryBuilder summaries = new SummaryBuilder()
2557 summaries.addLinksSummaryFromFile('Crash dumps from this run:', 'dumplings.txt')
2558 summaries.emit(newJob)
2561 def affinityOptions = null
2563 if (windowsArmJob == true) {
2565 "use_arm64_build_machine" : false
2569 else if (architecture == 'arm64' && os != 'Windows_NT') {
2571 "large_pages" : false
2575 setMachineAffinity(newJob, os, architecture, affinityOptions)
2576 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
2578 // REVIEW: Should the scenario-base timeout be set in the "else" clause of the "architecture==arm64"?
2579 // Should the "architecture==arm64" include arm/armlb?
2580 // Should we be overriding possibly higher timeouts that would be set by setTestJobTimeOut()?
2581 setTestJobTimeOut(newJob, scenario)
2582 if (architecture == 'arm64') {
2583 Utilities.setJobTimeout(newJob, 240)
2586 if (windowsArmJob != true) {
2587 Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml')
2590 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.run.0/*.smrt", '', true, false)
2593 // Create a build flow to join together the build and tests required to run this test.
2594 // Windows CoreCLR build and Linux CoreCLR build (in parallel) ->
2595 // Linux CoreCLR test
2596 def flowJobName = getJobName(configuration, architecture, os, scenario, false) + "_flow"
2597 def fullTestJobName = projectFolder + '/' + newJob.name
2598 // Add a reference to the input jobs for report purposes
2599 JobReport.Report.addReference(inputCoreCLRBuildName)
2600 JobReport.Report.addReference(inputWindowTestsBuildName)
2601 JobReport.Report.addReference(fullTestJobName)
2602 def newFlowJob = null
2604 if (os == 'RHEL7.2' || os == 'Debian8.4') {
2605 // Do not create the flow job for RHEL jobs.
2609 if (windowsArmJob == true) {
2610 // For Windows arm jobs there is no reason to build a parallel test job.
2611 // The product build supports building and archiving the tests.
2613 newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
2615 coreclrBuildJob = build(params, '${inputCoreCLRBuildName}')
2617 // And then build the test build
2618 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number], '${fullTestJobName}')
2623 newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
2625 // Build the input jobs in parallel
2627 { coreclrBuildJob = build(params, '${inputCoreCLRBuildName}') },
2628 { windowsBuildJob = build(params, '${inputWindowTestsBuildName}') }
2631 // And then build the test build
2632 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
2633 CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}')
2638 // For the flow jobs set the machine affinity as x64 if an armarch.
2639 def flowArch = architecture
2641 if (flowArch in validWindowsNTCrossArches) {
2643 affinityOptions = null
2646 setMachineAffinity(newFlowJob, os, flowArch, affinityOptions)
2647 Utilities.standardJobSetup(newFlowJob, project, isPR, "*/${branch}")
2648 addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false)
2655 JobReport.Report.generateJobReport(out)
2657 // Make the call to generate the help job
2658 Utilities.createHelperJob(this, project, branch,
2659 "Welcome to the ${project} Repository", // This is prepended to the help message
2660 "Have a nice day!") // This is appended to the help message. You might put known issues here.
2662 Utilities.addCROSSCheck(this, project, branch)