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 = [
144 // 'jitdiff', // jitdiff is currently disabled, until someone spends the effort to make it fully work
146 'gc_reliability_framework',
149 def static allScenarios = basicScenarios + r2rStressScenarios.keySet() + jitStressModeScenarios.keySet()
151 // A set of scenarios that are valid for arm/arm64/armlb tests run on hardware. This is a map from valid scenario name
152 // to Tests.lst file categories to exclude.
154 // This list should contain a subset of the scenarios from `allScenarios`. Please keep this in the same order as that,
155 // and with the same values, with some commented out, for easier maintenance.
157 // Note that some scenarios that are commented out should be enabled, but haven't yet been.
159 def static validArmWindowsScenarios = [
168 // 'gc_reliability_framework'
170 'r2r_jitstress1': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
171 'r2r_jitstress2': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
172 'r2r_jitstressregs1': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
173 'r2r_jitstressregs2': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
174 'r2r_jitstressregs3': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
175 'r2r_jitstressregs4': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
176 'r2r_jitstressregs8': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
177 'r2r_jitstressregs0x10': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
178 'r2r_jitstressregs0x80': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
179 'r2r_jitstressregs0x1000': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
180 'r2r_jitminopts': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
181 'r2r_jitforcerelocs': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
182 'r2r_gcstress15': ["R2R_FAIL", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
183 'minopts': ["MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
184 'tieredcompilation': [],
186 'jitstress1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
187 'jitstress2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
188 'jitstressregs1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
189 'jitstressregs2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
190 'jitstressregs3': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
191 'jitstressregs4': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
192 'jitstressregs8': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
193 'jitstressregs0x10': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
194 'jitstressregs0x80': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
195 'jitstressregs0x1000': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
196 'jitstress2_jitstressregs1': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
197 'jitstress2_jitstressregs2': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
198 'jitstress2_jitstressregs3': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
199 'jitstress2_jitstressregs4': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
200 'jitstress2_jitstressregs8': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
201 'jitstress2_jitstressregs0x10': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
202 'jitstress2_jitstressregs0x80': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
203 'jitstress2_jitstressregs0x1000': ["JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
204 'tailcallstress': ["TAILCALLSTRESS_FAIL", "TAILCALLSTRESS_EXCLUDE"],
205 // 'jitsse2only' // Only relevant to xarch
206 'jitnosimd': [], // Only interesting on platforms where SIMD support exists.
209 // 'corefx_tieredcompilation'
210 // 'corefx_jitstress1'
211 // 'corefx_jitstress2'
212 // 'corefx_jitstressregs1'
213 // 'corefx_jitstressregs2'
214 // 'corefx_jitstressregs3'
215 // 'corefx_jitstressregs4'
216 // 'corefx_jitstressregs8'
217 // 'corefx_jitstressregs0x10'
218 // 'corefx_jitstressregs0x80'
219 // 'corefx_jitstressregs0x1000'
220 'gcstress0x3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
221 'gcstress0xc': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE"],
222 'zapdisable': ["ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
224 'gcstress0xc_zapdisable': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
225 'gcstress0xc_zapdisable_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
226 'gcstress0xc_zapdisable_heapverify1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE"],
227 'gcstress0xc_jitstress1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
228 'gcstress0xc_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
229 'gcstress0xc_minopts_heapverify1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
232 // NOTE: the following scenarios are not defined in the 'allScenarios' list! Is this a bug?
235 'minopts_zapdisable': ["ZAPDISABLE_FAIL", "ZAPDISABLE_EXCLUDE", "MINOPTS_FAIL", "MINOPTS_EXCLUDE"],
236 'gcstress0x3_jitstress1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
237 'gcstress0x3_jitstress2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
238 'gcstress0x3_jitstressregs1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
239 'gcstress0x3_jitstressregs2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
240 'gcstress0x3_jitstressregs3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
241 'gcstress0x3_jitstressregs4': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
242 'gcstress0x3_jitstressregs8': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
243 'gcstress0x3_jitstressregs0x10': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
244 'gcstress0x3_jitstressregs0x80': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
245 'gcstress0x3_jitstressregs0x1000': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
246 'gcstress0xc_jitstressregs1': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
247 'gcstress0xc_jitstressregs2': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
248 'gcstress0xc_jitstressregs3': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
249 'gcstress0xc_jitstressregs4': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
250 'gcstress0xc_jitstressregs8': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
251 'gcstress0xc_jitstressregs0x10': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
252 'gcstress0xc_jitstressregs0x80': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"],
253 'gcstress0xc_jitstressregs0x1000': ["GCSTRESS_FAIL", "GCSTRESS_EXCLUDE", "JITSTRESS_FAIL", "JITSTRESS_EXCLUDE"]
256 def static configurationList = ['Debug', 'Checked', 'Release']
258 // This is the set of architectures
259 def static architectureList = ['arm', 'armlb', 'x86_arm_altjit', 'x64_arm64_altjit', 'arm64', 'x64', 'x86']
262 // **************************************************************
263 // Create some specific views
265 // These aren't using the Utilities.addStandardFolderView() function, because that creates
266 // views based on a single regular expression. These views will be generated by adding a
267 // specific set of jobs to them.
269 // Utilities.addStandardFolderView() also creates a lot of additional stuff around the
270 // view, like "Build Statistics", "Job Statistics", "Unstable Jobs". Until it is determined
271 // those are required, don't add them (which simplifies the view pages, as well).
272 // **************************************************************
275 def static MergeJobView = null
276 def static PeriodicJobView = null
277 def static ArchitectureViews = [:]
278 def static OSViews = [:]
281 // MergeJobView: include all jobs that execute when a PR change is merged.
282 Views.MergeJobView = listView('Merge') {
295 // PeriodicJobView: include all jobs that execute on a schedule
296 Views.PeriodicJobView = listView('Periodic') {
309 // Create a view for non-PR jobs for each architecture.
310 Constants.architectureList.each { architecture ->
311 Views.ArchitectureViews[architecture] = listView(architecture) {
325 // Create a view for non-PR jobs for each OS.
326 Constants.osList.each { os ->
327 // Don't create one for the special 'Windows_NT_BuildOnly'
328 if (os == 'Windows_NT_BuildOnly') {
331 Views.OSViews[os] = listView(os) {
345 def static addToMergeView(def job) {
346 Views.MergeJobView.with {
353 def static addToPeriodicView(def job) {
354 Views.PeriodicJobView.with {
361 def static addToViews(def job, def isPR, def architecture, def os) {
363 // No views want PR jobs currently.
367 // Add to architecture view.
368 Views.ArchitectureViews[architecture].with {
375 Views.OSViews[os].with {
382 def static addPeriodicTriggerHelper(def job, String cronString, boolean alwaysRuns = false) {
383 addToPeriodicView(job)
384 Utilities.addPeriodicTrigger(job, cronString, alwaysRuns)
387 def static addGithubPushTriggerHelper(def job) {
389 Utilities.addGithubPushTrigger(job)
393 def static setMachineAffinity(def job, def os, def architecture, def options = null) {
394 assert os instanceof String
395 assert architecture instanceof String
397 def armArches = ['arm', 'armlb', 'arm64']
398 def supportedArmLinuxOs = ['Ubuntu', 'Ubuntu16.04', 'Tizen']
400 if (!(architecture in armArches)) {
401 assert options == null
402 Utilities.setMachineAffinity(job, os, 'latest-or-auto')
407 // This is an arm(64) job.
409 // There are several options.
413 // Arm32 (Build) -> latest-arm64
414 // |-> os == "Windows_NT" && architecture == "arm" || architecture == "armlb" && options['use_arm64_build_machine'] == true
415 // Arm32 (Test) -> arm64-windows_nt
416 // |-> os == "Windows_NT" && architecture == "arm" || architecture == "armlb" && options['use_arm64_build_machine'] == false
418 // Arm64 (Build) -> latest-arm64
419 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == true
420 // Arm64 (Test) -> arm64-windows_nt
421 // |-> os == "Windows_NT" && architecture == "arm64" && options['use_arm64_build_machine'] == false
425 // Arm32 (Build) -> arm-cross-latest
426 // |-> os in supportedArmLinuxOs && architecture == "arm" || architecture == "armlb"
427 // Arm32 (Test) -> NYI Arch not supported
430 // Arm64 (Build) -> arm64-cross-latest
431 // |-> os != "Windows_NT" && architecture == "arm64" && options['is_build_only'] == true
432 // Arm64 Small Page Size (Test) -> arm64-small-page-size
433 // |-> os != "Windows_NT" && architecture == "arm64" && options['large_pages'] == false
434 // Arm64 Large Page Size (Test) -> arm64-huge-page-size
435 // |-> os != "Windows_NT" && architecture == "arm64" && options['large_pages'] == true
437 // This has to be a arm arch
438 assert architecture in armArches
439 if (os == "Windows_NT") {
440 // Arm(64) Windows jobs share the same machines for now
441 def isBuild = options['use_arm64_build_machine'] == true
443 if (isBuild == true) {
444 Utilities.setMachineAffinity(job, os, 'latest-arm64')
446 Utilities.setMachineAffinity(job, os, 'arm64-windows_nt')
449 assert os != 'Windows_NT'
450 assert os in supportedArmLinuxOs
452 if (architecture == 'arm' || architecture == 'armlb') {
453 Utilities.setMachineAffinity(job, 'Ubuntu', 'arm-cross-latest')
456 if (options['is_build_only'] == true) {
457 Utilities.setMachineAffinity(job, os, 'arm64-cross-latest')
459 // Arm64 Test Machines
460 if (options['large_pages'] == false) {
461 Utilities.setMachineAffinity(job, os, 'arm64-small-page-size')
463 Utilities.setMachineAffinity(job, os, 'arm64-huge-page-size')
470 def static isGCStressRelatedTesting(def scenario) {
471 // The 'r2r_gcstress15' scenario is a basic scenario.
472 // Detect it and make it a GCStress related.
473 if (scenario == 'r2r_gcstress15')
478 def gcStressTestEnvVars = [ 'COMPlus_GCStress', 'COMPlus_ZapDisable', 'COMPlus_HeapVerify']
479 def scenarioName = scenario.toLowerCase()
480 def isGCStressTesting = false
481 Constants.jitStressModeScenarios[scenario].each{ k, v ->
482 if (k in gcStressTestEnvVars) {
483 isGCStressTesting = true;
486 return isGCStressTesting
489 def static isCoreFxScenario(def scenario) {
490 def corefx_prefix = 'corefx_'
491 if (scenario.length() < corefx_prefix.length()) {
494 return scenario.substring(0,corefx_prefix.length()) == corefx_prefix
497 def static isR2RBaselineScenario(def scenario) {
498 return (scenario == 'r2r')
501 def static isR2RStressScenario(def scenario) {
502 return Constants.r2rStressScenarios.containsKey(scenario)
505 def static isR2RScenario(def scenario) {
506 return isR2RBaselineScenario(scenario) || isR2RStressScenario(scenario)
509 def static isJitStressScenario(def scenario) {
510 return Constants.jitStressModeScenarios.containsKey(scenario)
513 def static isLongGc(def scenario) {
514 return (scenario == 'longgc' || scenario == 'gcsimulator')
517 def static isJitDiff(def scenario) {
518 return (scenario == 'jitdiff')
521 def static isGcReliabilityFramework(def scenario) {
522 return (scenario == 'gc_reliability_framework')
525 def static isArmWindowsScenario(def scenario) {
526 return Constants.validArmWindowsScenarios.containsKey(scenario)
529 def static setJobTimeout(newJob, isPR, architecture, configuration, scenario, isBuildOnly) {
530 // 2 hours (120 minutes) is the default timeout
533 if (!(scenario == 'default' && isPR == true)) {
534 // Pri-1 test builds take a long time. Default PR jobs are Pri-0; everything else is Pri-1
535 // (see calculateBuildCommands()). So up the Pri-1 build jobs timeout.
540 // Note that these can only increase, never decrease, the Pri-1 timeout possibly set above.
541 if (isGCStressRelatedTesting(scenario)) {
544 else if (isCoreFxScenario(scenario)) {
547 else if (isJitStressScenario(scenario)) {
550 else if (isR2RBaselineScenario(scenario)) {
553 else if (isLongGc(scenario)) {
556 else if (isJitDiff(scenario)) {
559 else if (isGcReliabilityFramework(scenario)) {
562 else if (architecture == 'arm' || architecture == 'armlb' || architecture == 'arm64') {
567 if (configuration == 'Debug') {
568 // Debug runs can be very slow. Add an hour.
572 // If we've changed the timeout from the default, set it in the job.
574 if (timeout != 120) {
575 Utilities.setJobTimeout(newJob, timeout)
579 def static getJobFolder(def scenario) {
580 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
583 if (scenario == 'illink') {
589 def static getStressModeDisplayName(def scenario) {
591 Constants.jitStressModeScenarios[scenario].each{ k, v ->
592 def prefixLength = 'COMPlus_'.length()
593 if (k.length() >= prefixLength) {
594 def modeName = k.substring(prefixLength, k.length())
595 displayStr += ' ' + modeName + '=' + v
599 if (isCoreFxScenario(scenario)) {
600 displayStr = ('CoreFx ' + displayStr).trim()
606 def static getR2RDisplayName(def scenario) {
607 // Assume the scenario name is one from the r2rStressScenarios dict, and remove its "r2r_" prefix.
608 def displayStr = scenario
609 def prefixLength = 'r2r_'.length()
610 if (displayStr.length() >= prefixLength) {
611 displayStr = "R2R " + displayStr.substring(prefixLength, displayStr.length())
612 } else if (scenario == 'r2r') {
619 // Functions to create an environment script.
620 // envScriptCreate -- initialize the script (call first)
621 // envScriptFinalize -- finalize the script (call last)
622 // envScriptSetStressModeVariables -- set stress mode variables in the env script
623 // envScriptAppendExistingScript -- append an existing script to the generated script
625 // Each script returns a string of commands. Concatenate all the strings together before
626 // adding them to the builds commands, to make sure they get executed as one Jenkins script.
629 // Initialize the environment setting script.
630 def static envScriptCreate(def os, def stepScriptLocation) {
632 if (os == 'Windows_NT') {
633 stepScript += "echo Creating TestEnv script\r\n"
634 stepScript += "if exist ${stepScriptLocation} del ${stepScriptLocation}\r\n"
636 // Create at least an empty script.
637 stepScript += "echo. > ${stepScriptLocation}\r\n"
640 stepScript += "echo Creating environment setting script\n"
641 stepScript += "echo \\#\\!/usr/bin/env bash > ${stepScriptLocation}\n"
647 // Generates the string for setting stress mode variables.
648 def static envScriptSetStressModeVariables(def os, def stressModeVars, def stepScriptLocation) {
650 if (os == 'Windows_NT') {
651 stressModeVars.each{ k, v ->
652 // Write out what we are writing to the script file
653 stepScript += "echo Setting ${k}=${v}\r\n"
654 // Write out the set itself to the script file`
655 stepScript += "echo set ${k}=${v} >> ${stepScriptLocation}\r\n"
659 stressModeVars.each{ k, v ->
660 // Write out what we are writing to the script file
661 stepScript += "echo Setting ${k}=${v}\n"
662 // Write out the set itself to the script file`
663 stepScript += "echo export ${k}=${v} >> ${stepScriptLocation}\n"
670 // Append an existing script to an environment script.
671 // Returns string of commands to do this.
672 def static envScriptAppendExistingScript(def os, def appendScript, def stepScriptLocation) {
673 assert (os == 'Windows_NT')
676 stepScript += "echo Appending ${appendScript} to ${stepScriptLocation}\r\n"
677 stepScript += "type ${appendScript} >> ${stepScriptLocation}\r\n"
682 // Finalize an environment setting script.
683 // Returns string of commands to do this.
684 def static envScriptFinalize(def os, def stepScriptLocation) {
687 if (os == 'Windows_NT') {
688 // Display the resulting script. This is useful when looking at the output log file.
689 stepScript += "echo Display the total script ${stepScriptLocation}\r\n"
690 stepScript += "type ${stepScriptLocation}\r\n"
693 stepScript += "chmod +x ${stepScriptLocation}\n"
699 def static isNeedDocker(def architecture, def os, def isBuild) {
701 if (architecture == 'x86' && os == 'Ubuntu') {
704 else if (architecture == 'arm') {
705 if (os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen') {
711 if (architecture == 'x86' && os == 'Ubuntu') {
718 def static getDockerImageName(def architecture, def os, def isBuild) {
719 // We must change some docker private images to official later
721 if (architecture == 'x86' && os == 'Ubuntu') {
722 return "hseok82/dotnet-buildtools-prereqs:ubuntu-16.04-crossx86-ef0ac75-20175511035548"
724 else if (architecture == 'arm') {
725 if (os == 'Ubuntu') {
726 return "microsoft/dotnet-buildtools-prereqs:ubuntu-14.04-cross-0cd4667-20172211042239"
728 else if (os == 'Ubuntu16.04') {
729 return "microsoft/dotnet-buildtools-prereqs:ubuntu-16.04-cross-ef0ac75-20175511035548"
731 else if (os == 'Tizen') {
732 return "hqueue/dotnetcore:ubuntu1404_cross_prereqs_v4-tizen_rootfs"
737 if (architecture == 'x86' && os == 'Ubuntu') {
738 return "hseok82/dotnet-buildtools-prereqs:ubuntu1604_x86_test"
741 println("Unknown architecture to use docker: ${architecture} ${os}");
745 // Calculates the name of the build job based on some typical parameters.
747 def static getJobName(def configuration, def architecture, def os, def scenario, def isBuildOnly) {
748 // If the architecture is x64, do not add that info into the build name.
749 // Need to change around some systems and other builds to pick up the right builds
752 def suffix = scenario != 'default' ? "_${scenario}" : '';
757 switch (architecture) {
759 if (scenario == 'default') {
760 // For now we leave x64 off of the name for compatibility with other jobs
761 baseName = configuration.toLowerCase() + '_' + os.toLowerCase()
763 else if (scenario == 'formatting') {
764 // we don't care about the configuration for the formatting job. It runs all configs
765 baseName = architecture.toLowerCase() + '_' + os.toLowerCase()
768 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
772 if (os.toLowerCase() == "windows_nt") {
773 // These are cross builds
774 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
777 // Defaults to a small page size set of machines.
778 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + "small_page_size"
782 // These are cross builds
785 baseName = 'armel_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
788 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
792 baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
795 case 'x86_arm_altjit':
796 case 'x64_arm64_altjit':
797 baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
800 println("Unknown architecture: ${architecture}");
805 return baseName + suffix
808 def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob, def bidailyCrossList) {
810 // Limited Windows ARM64 hardware is restricted for non-PR triggers to certain branches.
811 if (os == 'Windows_NT') {
812 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
813 if (!(branch in Constants.WindowsArm64Branches)) {
822 switch (architecture) {
825 if (isFlowJob && architecture == 'x86' && os == 'Ubuntu') {
826 addPeriodicTriggerHelper(job, '@daily')
828 else if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
829 addGithubPushTriggerHelper(job)
834 case 'x86_arm_altjit':
835 case 'x64_arm64_altjit':
836 addGithubPushTriggerHelper(job)
839 // We would normally want a per-push trigger, but with limited hardware we can't keep up
840 addPeriodicTriggerHelper(job, "H H/4 * * *")
843 println("Unknown architecture: ${architecture}");
849 assert !(os in bidailyCrossList)
850 // r2r gets a push trigger for checked/release
851 if (configuration == 'Checked' || configuration == 'Release') {
852 assert (os == 'Windows_NT') || (os in Constants.crossList)
853 if (architecture == 'x64' && os != 'OSX10.12') {
854 //Flow jobs should be Windows, Ubuntu, OSX0.12, or CentOS
855 if (isFlowJob || os == 'Windows_NT') {
856 addGithubPushTriggerHelper(job)
858 // OSX10.12 r2r jobs should only run every 12 hours, not daily.
859 } else if (architecture == 'x64' && os == 'OSX10.12'){
861 addPeriodicTriggerHelper(job, 'H H/12 * * *')
864 // For x86, only add per-commit jobs for Windows
865 else if (architecture == 'x86') {
866 if (os == 'Windows_NT') {
867 addGithubPushTriggerHelper(job)
870 // arm64 r2r jobs should only run daily.
871 else if (architecture == 'arm64') {
872 if (os == 'Windows_NT') {
873 addPeriodicTriggerHelper(job, '@daily')
878 case 'r2r_jitstress1':
879 case 'r2r_jitstress2':
880 case 'r2r_jitstressregs1':
881 case 'r2r_jitstressregs2':
882 case 'r2r_jitstressregs3':
883 case 'r2r_jitstressregs4':
884 case 'r2r_jitstressregs8':
885 case 'r2r_jitstressregs0x10':
886 case 'r2r_jitstressregs0x80':
887 case 'r2r_jitstressregs0x1000':
888 case 'r2r_jitminopts':
889 case 'r2r_jitforcerelocs':
890 case 'r2r_gcstress15':
891 assert !(os in bidailyCrossList)
893 // GCStress=C is currently not supported on OS X
894 if (os == 'OSX10.12' && isGCStressRelatedTesting(scenario)) {
898 // GC Stress 15 r2r gets a push trigger for checked/release
899 if (configuration == 'Checked' || configuration == 'Release') {
900 assert (os == 'Windows_NT') || (os in Constants.crossList)
901 if (architecture == 'x64') {
902 //Flow jobs should be Windows, Ubuntu, OSX10.12, or CentOS
903 if (isFlowJob || os == 'Windows_NT') {
904 // Add a weekly periodic trigger
905 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
908 // For x86, only add per-commit jobs for Windows
909 else if (architecture == 'x86') {
910 if (os == 'Windows_NT') {
911 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
917 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
918 assert configuration == 'Release'
919 assert architecture == 'x64'
920 addPeriodicTriggerHelper(job, '@daily')
921 // TODO: Add once external email sending is available again
922 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
925 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
926 assert configuration == 'Release'
927 assert architecture == 'x64'
928 addPeriodicTriggerHelper(job, 'H H * * 3,6') // some time every Wednesday and Saturday
929 // TODO: Add once external email sending is available again
930 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
932 case 'standalone_gc':
933 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
934 assert (configuration == 'Release' || configuration == 'Checked')
935 // TODO: Add once external email sending is available again
936 // addEmailPublisher(job, 'dotnetgctests@microsoft.com')
937 addPeriodicTriggerHelper(job, '@daily')
939 case 'gc_reliability_framework':
940 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
941 assert (configuration == 'Release' || configuration == 'Checked')
942 // Only triggered by phrase.
945 assert !(os in bidailyCrossList)
946 // ILASM/ILDASM roundtrip one gets a daily build, and only for release
947 if (architecture == 'x64' && configuration == 'Release') {
948 // We don't expect to see a job generated except in these scenarios
949 assert (os == 'Windows_NT') || (os in Constants.crossList)
950 if (isFlowJob || os == 'Windows_NT') {
951 addPeriodicTriggerHelper(job, '@daily')
956 assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
957 assert configuration == 'Checked'
958 assert (architecture == 'x64' || architecture == 'x86')
959 addGithubPushTriggerHelper(job)
962 assert (os == 'Windows_NT' || os == "Ubuntu")
963 assert architecture == 'x64'
964 addGithubPushTriggerHelper(job)
966 case 'jitstressregs1':
967 case 'jitstressregs2':
968 case 'jitstressregs3':
969 case 'jitstressregs4':
970 case 'jitstressregs8':
971 case 'jitstressregs0x10':
972 case 'jitstressregs0x80':
973 case 'jitstressregs0x1000':
978 case 'jitstress2_jitstressregs1':
979 case 'jitstress2_jitstressregs2':
980 case 'jitstress2_jitstressregs3':
981 case 'jitstress2_jitstressregs4':
982 case 'jitstress2_jitstressregs8':
983 case 'jitstress2_jitstressregs0x10':
984 case 'jitstress2_jitstressregs0x80':
985 case 'jitstress2_jitstressregs0x1000':
986 case 'tailcallstress':
989 case 'jitnox86hwintrinsic':
990 case 'jitincompletehwintrinsic':
991 case 'jitx86hwintrinsicnoavx':
992 case 'jitx86hwintrinsicnoavx2':
993 case 'jitx86hwintrinsicnosimd':
994 case 'corefx_baseline':
995 case 'corefx_minopts':
996 case 'corefx_jitstress1':
997 case 'corefx_jitstress2':
998 case 'corefx_jitstressregs1':
999 case 'corefx_jitstressregs2':
1000 case 'corefx_jitstressregs3':
1001 case 'corefx_jitstressregs4':
1002 case 'corefx_jitstressregs8':
1003 case 'corefx_jitstressregs0x10':
1004 case 'corefx_jitstressregs0x80':
1005 case 'corefx_jitstressregs0x1000':
1007 if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
1008 assert (os == 'Windows_NT') || (os in Constants.crossList)
1009 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
1010 if (os == 'Windows_NT') {
1011 // We don't have enough ARM64 machines to run these more frequently than weekly.
1012 addPeriodicTriggerHelper(job, '@weekly')
1016 addPeriodicTriggerHelper(job, '@daily')
1022 if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
1023 assert (os == 'Windows_NT') || (os in Constants.crossList)
1024 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
1025 if (os == 'Windows_NT') {
1026 // We don't have enough ARM64 machines to run these more frequently than weekly.
1027 addPeriodicTriggerHelper(job, '@weekly')
1029 // TODO: Add once external email sending is available again
1030 // addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
1033 addPeriodicTriggerHelper(job, '@weekly')
1038 case 'gcstress0xc_zapdisable':
1039 case 'gcstress0xc_zapdisable_jitstress2':
1040 case 'gcstress0xc_zapdisable_heapverify1':
1041 case 'gcstress0xc_jitstress1':
1042 case 'gcstress0xc_jitstress2':
1043 case 'gcstress0xc_minopts_heapverify1':
1044 // GCStress=C is currently not supported on OS X
1045 if (os != 'CentOS7.1' && os != 'OSX10.12' && !(os in bidailyCrossList)) {
1046 assert (os == 'Windows_NT') || (os in Constants.crossList)
1047 if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
1048 if (os == 'Windows_NT') {
1049 // We don't have enough ARM64 machines to run these more frequently than weekly.
1050 addPeriodicTriggerHelper(job, '@weekly')
1052 // TODO: Add once external email sending is available again
1053 // addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
1056 addPeriodicTriggerHelper(job, '@weekly')
1062 // Testing on other operating systems TBD
1063 assert (os == 'Windows_NT' || os == 'Ubuntu')
1064 if (architecture == 'x64' || architecture == 'x86') {
1065 if (configuration == 'Checked') {
1066 addPeriodicTriggerHelper(job, '@daily')
1071 case 'tieredcompilation':
1072 case 'corefx_tieredcompilation':
1073 // No periodic jobs just yet, still testing
1077 println("Unknown scenario: ${scenario}");
1084 // **************************
1085 // Define the basic inner loop builds for PR and commit. This is basically just the set
1086 // of coreclr builds over linux/osx 10.12/windows and debug/release/checked. In addition, the windows
1087 // builds will do a couple extra steps.
1088 // **************************
1090 // Adds a trigger for the PR build if one is needed. If isFlowJob is true, then this is the
1091 // flow job that rolls up the build and test for non-windows OS's. // If the job is a windows build only job,
1092 // it's just used for internal builds
1093 // If you add a job with a trigger phrase, please add that phrase to coreclr/Documentation/project-docs/ci-trigger-phrases.md
1094 def static addTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob) {
1095 if (isWindowsBuildOnlyJob) {
1099 def bidailyCrossList = ['RHEL7.2', 'Debian8.4']
1100 // Non pull request builds.
1102 addNonPRTriggers(job, branch, isPR, architecture, os, configuration, scenario, isFlowJob, isWindowsBuildOnlyJob, bidailyCrossList)
1129 // Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers
1130 // We generally only have a distinct set of default triggers but a bunch of on-demand ones.
1131 def osGroup = getOSGroup(os)
1132 switch (architecture) {
1133 case 'x64': // editor brace matching: {
1134 if (scenario == 'formatting') {
1135 assert configuration == 'Checked'
1136 if (os == 'Windows_NT' || os == 'Ubuntu') {
1137 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Innerloop Formatting")
1143 // OpenSUSE, Debian & RedHat get trigger phrases for pri 0 build, and pri 1 build & test
1146 if (scenario == 'default') {
1148 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}.*")
1153 assert scenario == 'default'
1154 // Distinguish with the other architectures (arm and x86)
1155 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}.*")
1160 assert scenario == 'default'
1161 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+.*")
1164 if (scenario == 'illink') {
1165 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1170 // Triggers on the non-flow jobs aren't necessary here
1171 // Corefx testing uses non-flow jobs.
1172 if (!isFlowJob && !isCoreFxScenario(scenario)) {
1177 // OSX uses checked for default PR tests
1178 if (configuration == 'Checked') {
1180 assert !job.name.contains("centos")
1181 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1185 if (configuration == 'Checked') {
1186 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1190 if (configuration == 'Release') {
1191 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1195 if (configuration == 'Release') {
1196 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1200 if (configuration == 'Release') {
1201 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1204 case 'standalone_gc':
1205 if (configuration == 'Release' || configuration == 'Checked') {
1206 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1209 case 'gc_reliability_framework':
1210 if (configuration == 'Release' || configuration == 'Checked') {
1211 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1215 if (isJitStressScenario(scenario)) {
1216 def displayStr = getStressModeDisplayName(scenario)
1217 assert (os == 'Windows_NT') || (os in Constants.crossList)
1218 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1219 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1221 else if (isR2RScenario(scenario)) {
1222 if (configuration == 'Release' || configuration == 'Checked') {
1223 def displayStr = getR2RDisplayName(scenario)
1224 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build and Test",
1225 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1229 println("Unknown scenario: ${scenario}");
1239 // CentOS uses checked for default PR tests while debug is build only
1240 if (configuration == 'Debug') {
1242 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build")
1245 // Make sure this is a flow job to get build and test.
1246 if (configuration == 'Checked' && isFlowJob) {
1247 assert job.name.contains("flow")
1249 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1253 if (isR2RScenario(scenario)) {
1254 if (configuration == 'Release' || configuration == 'Checked') {
1255 def displayStr = getR2RDisplayName(scenario)
1256 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1257 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1268 if (configuration == 'Checked') {
1269 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1273 if (configuration == 'Checked') {
1274 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1278 if (configuration == 'Release') {
1279 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
1283 if (configuration == 'Release') {
1284 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1288 if (configuration == 'Release') {
1289 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1292 case 'standalone_gc':
1293 if (configuration == 'Release' || configuration == 'Checked') {
1294 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1297 case 'gc_reliability_framework':
1298 if (configuration == 'Release' || configuration == 'Checked') {
1299 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
1303 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1306 if (isJitStressScenario(scenario)) {
1307 def displayStr = getStressModeDisplayName(scenario)
1308 assert (os == 'Windows_NT') || (os in Constants.crossList)
1309 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1310 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1312 else if (isR2RScenario(scenario)) {
1313 if (configuration == 'Release' || configuration == 'Checked') {
1314 def displayStr = getR2RDisplayName(scenario)
1315 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1316 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1320 println("Unknown scenario: ${scenario}");
1327 println("Unknown os: ${os}");
1332 // editor brace matching: }
1334 case 'arm': // editor brace matching: {
1338 if (architecture == 'armlb') { // No arm legacy backend testing for Ubuntu
1341 assert scenario == 'default'
1344 azureVMAgentPostBuildAction {
1345 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1349 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build",
1350 "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
1353 if (architecture == 'armlb') { // No arm legacy backend testing for Tizen armel
1356 architecture='armel'
1359 azureVMAgentPostBuildAction {
1360 agentPostBuildAction('Delete agent if the build was not successful (when idle).')
1364 if (configuration == 'Checked') {
1365 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build and Test")
1368 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build",
1369 "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
1373 // Triggers on the non-flow jobs aren't necessary here
1378 // Set up a private trigger
1379 def contextString = "${os} ${architecture} Cross ${configuration}"
1380 def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1381 if (scenario == 'default') {
1382 contextString += " Innerloop"
1383 triggerString += "\\W+Innerloop"
1386 contextString += " ${scenario}"
1387 triggerString += "\\W+${scenario}"
1390 if (configuration == 'Debug') {
1391 contextString += " Build"
1392 triggerString += "\\W+Build"
1394 contextString += " Build and Test"
1395 triggerString += "\\W+Build and Test"
1398 triggerString += ".*"
1402 // Only Checked is a default trigger.
1403 if (configuration == 'Checked')
1405 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
1409 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1413 // Stress jobs will use this code path.
1414 if (isArmWindowsScenario(scenario)) {
1415 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1421 println("NYI os: ${os}");
1426 // editor brace matching: }
1427 case 'arm64': // editor brace matching: {
1428 // Set up a private trigger
1429 def contextString = "${os} ${architecture} Cross ${configuration}"
1430 def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
1431 if (scenario == 'default') {
1432 contextString += " Innerloop"
1433 triggerString += "\\W+Innerloop"
1436 contextString += " ${scenario}"
1437 triggerString += "\\W+${scenario}"
1440 if (configuration == 'Debug') {
1441 contextString += " Build"
1442 triggerString += "\\W+Build"
1444 contextString += " Build and Test"
1445 triggerString += "\\W+Build and Test"
1448 triggerString += ".*"
1455 if (configuration == 'Debug' && !isFlowJob) {
1456 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Innerloop Build")
1459 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", triggerString)
1464 if (isR2RScenario(scenario)) {
1465 if (configuration == 'Checked' || configuration == 'Release') {
1466 def displayStr = getR2RDisplayName(scenario)
1467 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build and Test", triggerString)
1474 // Triggers on the non-flow jobs aren't necessary here
1479 assert isArmWindowsScenario(scenario)
1482 if (configuration == 'Checked') {
1483 Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
1486 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1490 // Stress jobs will use this code path.
1491 if (isArmWindowsScenario(scenario)) {
1492 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, triggerString, null, arm64Users)
1498 println("NYI os: ${os}");
1503 // editor brace matching: }
1504 case 'x86': // editor brace matching: {
1505 assert ((os == 'Windows_NT') || ((os == 'Ubuntu') && (scenario == 'default')))
1506 if (os == 'Ubuntu') {
1507 // Triggers on the non-flow jobs aren't necessary here
1511 // on-demand only for ubuntu x86
1512 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build",
1513 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
1518 if (configuration == 'Checked') {
1519 assert !job.name.contains("centos")
1520 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
1523 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
1524 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
1528 if (configuration == 'Release') {
1529 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test",
1530 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1534 if (configuration == 'Release') {
1535 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test",
1536 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1540 if (configuration == 'Release') {
1541 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator",
1542 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1545 case 'standalone_gc':
1546 if (configuration == 'Release' || configuration == 'Checked') {
1547 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC",
1548 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1552 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1555 if (isJitStressScenario(scenario)) {
1556 def displayStr = getStressModeDisplayName(scenario)
1557 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
1558 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1560 else if (isR2RScenario(scenario)) {
1561 if (configuration == 'Release' || configuration == 'Checked') {
1562 def displayStr = getR2RDisplayName(scenario)
1563 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} Build & Test",
1564 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1568 println("Unknown scenario: ${os} ${architecture} ${scenario}");
1574 // editor brace matching: }
1575 case 'x64_arm64_altjit':
1576 case 'x86_arm_altjit': // editor brace matching: {
1577 assert (os == 'Windows_NT')
1580 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
1581 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+Build and Test.*")
1584 Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${scenario}",
1585 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
1589 // editor brace matching: }
1591 println("Unknown architecture: ${architecture}");
1597 def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR, def architecture, def configuration, def os, def isBuildOnly) {
1598 def buildCommands = [];
1599 def osGroup = getOSGroup(os)
1600 def lowerConfiguration = configuration.toLowerCase()
1603 if (scenario == 'default' && isPR == true) {
1607 setJobTimeout(newJob, isPR, architecture, configuration, scenario, isBuildOnly)
1609 def enableCorefxTesting = isCoreFxScenario(scenario)
1611 // Calculate the build steps, archival, and xunit results
1613 case 'Windows_NT': // editor brace matching: {
1614 switch (architecture) {
1617 case 'x86_arm_altjit':
1618 case 'x64_arm64_altjit':
1619 def arch = architecture
1621 if (architecture == 'x86_arm_altjit') {
1624 else if (architecture == 'x64_arm64_altjit') {
1628 if (scenario == 'formatting') {
1629 buildCommands += "python -u tests\\scripts\\format.py -c %WORKSPACE% -o Windows_NT -a ${arch}"
1630 Utilities.addArchival(newJob, "format.patch", "", true, false)
1634 if (scenario == 'illink') {
1635 buildCommands += "tests\\scripts\\build_illink.cmd clone ${arch}"
1638 // If it is a release build for windows, ensure PGO is used, else fail the build
1639 if ((lowerConfiguration == 'release') &&
1640 (scenario in Constants.basicScenarios) &&
1641 (architecture != 'x86_arm_altjit') &&
1642 (architecture != 'x64_arm64_altjit')) {
1644 buildOpts += ' -enforcepgo'
1647 if (enableCorefxTesting) {
1648 buildOpts += ' skiptests';
1650 buildOpts += " -priority=${priority}"
1653 // Set __TestIntermediateDir to something short. If __TestIntermediateDir is already set, build-test.cmd will
1654 // output test binaries to that directory. If it is not set, the binaries are sent to a default directory whose name is about
1655 // 35 characters long.
1657 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${arch} ${buildOpts}"
1660 def runtestArguments = ''
1661 def testOpts = 'collectdumps'
1663 if (isR2RScenario(scenario)) {
1665 // If this is a ReadyToRun scenario, pass 'crossgen' or 'crossgenaltjit'
1666 // to cause framework assemblies to be crossgen'ed. Pass 'runcrossgentests'
1667 // to cause the tests to be crossgen'ed.
1669 if ((architecture == 'x86_arm_altjit') || (architecture == 'x64_arm64_altjit')) {
1670 testOpts += ' crossgenaltjit protononjit.dll'
1672 testOpts += ' crossgen'
1675 testOpts += ' runcrossgentests'
1677 else if (scenario == 'jitdiff') {
1678 testOpts += ' jitdisasm crossgen'
1680 else if (scenario == 'ilrt') {
1681 testOpts += ' ilasmroundtrip'
1683 else if (isLongGc(scenario)) {
1684 testOpts += " ${scenario} sequential"
1686 else if (scenario == 'standalone_gc') {
1687 testOpts += ' gcname clrgc.dll'
1689 else if (scenario == 'illink') {
1690 testOpts += " link %WORKSPACE%\\linker\\linker\\bin\\netcore_Release\\netcoreapp2.0\\win10-${arch}\\publish\\illink.exe"
1693 // Default per-test timeout is 10 minutes. For stress modes and Debug scenarios, increase this
1694 // to 30 minutes (30 * 60 * 1000 = 180000). The "timeout" argument to runtest.cmd sets this, by
1695 // taking a timeout value in milliseconds. (Note that it sets the __TestTimeout environment variable,
1696 // which is read by the xunit harness.)
1697 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario) || (lowerConfiguration == 'debug'))
1699 def timeout = 1800000
1700 testOpts += " timeout ${timeout}"
1703 // If we are running a stress mode, we should write out the set of key
1704 // value env pairs to a file at this point and then we'll pass that to runtest.cmd
1706 def envScriptPath = ''
1707 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
1708 def buildCommandsStr = ''
1709 envScriptPath = "%WORKSPACE%\\SetStressModes.bat"
1710 buildCommandsStr += envScriptCreate(os, envScriptPath)
1712 if (isJitStressScenario(scenario)) {
1713 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], envScriptPath)
1715 else if (isR2RStressScenario(scenario)) {
1716 buildCommandsStr += envScriptSetStressModeVariables(os, Constants.r2rStressScenarios[scenario], envScriptPath)
1719 if (architecture == 'x86_arm_altjit') {
1720 buildCommandsStr += envScriptAppendExistingScript(os, "%WORKSPACE%\\tests\\x86_arm_altjit.cmd", envScriptPath)
1722 else if (architecture == 'x64_arm64_altjit') {
1723 buildCommandsStr += envScriptAppendExistingScript(os, "%WORKSPACE%\\tests\\x64_arm64_altjit.cmd", envScriptPath)
1726 envScriptFinalize(os, envScriptPath)
1728 // Note that buildCommands is an array of individually executed commands; we want all the commands used to
1729 // create the SetStressModes.bat script to be executed together, hence we accumulate them as strings
1730 // into a single script.
1731 buildCommands += buildCommandsStr
1733 else if (architecture == 'x86_arm_altjit') {
1734 envScriptPath = "%WORKSPACE%\\tests\\x86_arm_altjit.cmd"
1736 else if (architecture == 'x64_arm64_altjit') {
1737 envScriptPath = "%WORKSPACE%\\tests\\x64_arm64_altjit.cmd"
1739 if (envScriptPath != '') {
1740 testOpts += " TestEnv ${envScriptPath}"
1743 runtestArguments = "${lowerConfiguration} ${arch} ${testOpts}"
1745 if (enableCorefxTesting) {
1746 def workspaceRelativeFxRoot = "_/fx"
1747 def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
1749 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}"
1751 // Archive and process (only) the test results
1752 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1753 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1755 //Archive additional build stuff to diagnose why my attempt at fault injection isn't causing CI to fail
1756 Utilities.addArchival(newJob, "SetStressModes.bat", "", true, false)
1757 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/testhost/**", "", true, false)
1759 else if (isGcReliabilityFramework(scenario)) {
1760 buildCommands += "tests\\runtest.cmd ${runtestArguments} GenerateLayoutOnly"
1761 buildCommands += "tests\\scripts\\run-gc-reliability-framework.cmd ${arch} ${configuration}"
1764 buildCommands += "tests\\runtest.cmd ${runtestArguments}"
1768 if (!enableCorefxTesting) {
1769 // Run the rest of the build
1770 // Build the mscorlib for the other OS's
1771 buildCommands += "build.cmd ${lowerConfiguration} ${arch} linuxmscorlib"
1772 buildCommands += "build.cmd ${lowerConfiguration} ${arch} osxmscorlib"
1774 if (arch == "x64") {
1775 buildCommands += "build.cmd ${lowerConfiguration} arm64 linuxmscorlib"
1778 // Zip up the tests directory so that we don't use so much space/time copying
1779 // 10s of thousands of files around.
1780 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')\"";
1782 if (!isJitStressScenario(scenario)) {
1783 // For windows, pull full test results and test drops for x86/x64.
1784 // No need to pull for stress mode scenarios (downstream builds use the default scenario)
1785 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1788 if (scenario == 'jitdiff') {
1789 // retrive jit-dasm output for base commit, and run jit-diff
1791 // if this is a build only job, we want to keep the default (build) artifacts for the flow job
1792 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**")
1797 Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true)
1803 assert isArmWindowsScenario(scenario)
1805 def machineAffinityOptions = ['use_arm64_build_machine' : true]
1806 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
1808 def buildArchitecture = 'arm'
1810 // For 'armlb' (the JIT LEGACY_BACKEND architecture for arm), tell build.cmd to use legacy backend for crossgen compilation.
1811 // Legacy backend is not the default JIT; it is an aljit. So, this is a special case.
1812 def armCrossgenOpt = ''
1813 if (architecture == 'armlb') {
1814 armCrossgenOpt = '-crossgenaltjit legacyjit.dll'
1817 // Hack: build pri1 tests for arm/armlb/arm64 build job, until we have separate pri0 and pri1 builds for the flow job to use.
1820 // This is now a build only job. Do not run tests. Use the flow job.
1821 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${buildArchitecture} -priority=${priority} ${armCrossgenOpt}"
1823 // Zip up the tests directory so that we don't use so much space/time copying
1824 // 10s of thousands of files around.
1825 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')\"";
1828 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1831 assert isArmWindowsScenario(scenario)
1833 def machineAffinityOptions = ['use_arm64_build_machine' : true]
1834 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
1836 // Hack: build pri1 tests for arm/armlb/arm64 build job, until we have separate pri0 and pri1 builds for the flow job to use.
1839 // This is now a build only job. Do not run tests. Use the flow job.
1840 buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2 -priority=${priority}"
1842 // Zip up the tests directory so that we don't use so much space/time copying
1843 // 10s of thousands of files around.
1844 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')\"";
1847 Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
1850 println("Unknown architecture: ${architecture}");
1855 // editor brace matching: }
1864 case 'Fedora24': // editor brace matching: {
1865 switch (architecture) {
1868 if (architecture == 'x86' && os == 'Ubuntu') {
1869 // build and PAL test
1870 def dockerImage = getDockerImageName(architecture, os, true)
1871 buildCommands += "docker run -i --rm -v \${WORKSPACE}:/opt/code -w /opt/code -e ROOTFS_DIR=/crossrootfs/x86 ${dockerImage} ./build.sh ${architecture} cross ${lowerConfiguration}"
1872 dockerImage = getDockerImageName(architecture, os, false)
1873 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"
1874 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
1875 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
1879 if (scenario == 'formatting') {
1880 buildCommands += "python tests/scripts/format.py -c \${WORKSPACE} -o Linux -a ${architecture}"
1881 Utilities.addArchival(newJob, "format.patch", "", true, false)
1885 if (scenario == 'illink') {
1886 assert(os == 'Ubuntu')
1887 buildCommands += "./tests/scripts/build_illink.sh --clone --arch=${architecture}"
1890 if (!enableCorefxTesting) {
1891 // We run pal tests on all OS but generate mscorlib (and thus, nuget packages)
1892 // only on supported OS platforms.
1893 def bootstrapRid = Utilities.getBoostrapPublishRid(os)
1894 def bootstrapRidEnv = bootstrapRid != null ? "__PUBLISH_RID=${bootstrapRid} " : ''
1896 buildCommands += "${bootstrapRidEnv}./build.sh verbose ${lowerConfiguration} ${architecture}"
1897 buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout"
1899 // Basic archiving of the build
1900 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
1902 Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
1905 // Corefx stress testing
1906 assert os == 'Ubuntu'
1907 assert architecture == 'x64'
1908 assert lowerConfiguration == 'checked'
1909 assert isJitStressScenario(scenario)
1912 buildCommands += "./build.sh verbose ${lowerConfiguration} ${architecture}"
1914 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
1916 def envScriptCmds = envScriptCreate(os, scriptFileName)
1917 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
1918 envScriptCmds += envScriptFinalize(os, scriptFileName)
1919 buildCommands += envScriptCmds
1921 // Build and text corefx
1922 def workspaceRelativeFxRoot = "_/fx"
1923 def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRoot}"
1925 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}"
1927 // Archive and process (only) the test results
1928 Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1929 Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
1933 if (!enableCorefxTesting) {
1934 buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs ./build.sh verbose ${lowerConfiguration} ${architecture} cross clang3.8"
1936 // HACK -- Arm64 does not have corefx jobs yet.
1937 buildCommands += "git clone https://github.com/dotnet/corefx fx"
1938 buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs-corefx ./fx/build-native.sh -release -buildArch=arm64 -- verbose cross clang3.8"
1939 buildCommands += "mkdir ./bin/Product/Linux.arm64.${configuration}/corefxNative"
1940 buildCommands += "cp fx/bin/Linux.arm64.Release/native/* ./bin/Product/Linux.arm64.${configuration}/corefxNative"
1942 // Basic archiving of the build
1943 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
1947 // Cross builds for ARM runs on Ubuntu, Ubuntu16.04 and Tizen currently
1948 assert (os == 'Ubuntu') || (os == 'Ubuntu16.04') || (os == 'Tizen')
1950 // default values for Ubuntu
1952 def linuxCodeName="trusty"
1953 if (os == 'Ubuntu16.04') {
1954 linuxCodeName="xenial"
1956 else if (os == 'Tizen') {
1958 linuxCodeName="tizen"
1961 // Unzip the Windows test binaries first. Exit with 0
1962 buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0"
1964 // Unpack the corefx binaries
1965 buildCommands += "mkdir ./bin/CoreFxBinDir"
1966 buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
1967 if (os != 'Tizen') {
1968 buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
1970 // Test environment emulation using docker and qemu has some problem to use lttng library.
1971 // We should remove libcoreclrtraceptprovider.so to avoid test hang.
1972 if (os == 'Ubuntu') {
1973 buildCommands += "rm -f -v ./bin/CoreFxBinDir/libcoreclrtraceptprovider.so"
1976 // Call the ARM CI script to cross build and test using docker
1977 buildCommands += """./tests/scripts/arm32_ci_script.sh \\
1980 --linuxCodeName=${linuxCodeName} \\
1981 --buildConfig=${lowerConfiguration} \\
1982 --testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\
1983 --coreFxBinDir=./bin/CoreFxBinDir \\
1984 --testDirFile=./tests/testsRunningInsideARM.txt"""
1986 // Basic archiving of the build, no pal tests
1987 Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
1990 println("Unknown architecture: ${architecture}");
1995 // editor brace matching: }
1997 println("Unknown os: ${os}");
2002 return buildCommands
2005 Constants.allScenarios.each { scenario ->
2006 [true, false].each { isPR ->
2007 Constants.architectureList.each { architecture ->
2008 Constants.configurationList.each { configuration ->
2009 Constants.osList.each { os ->
2010 // If the OS is Windows_NT_BuildOnly, set the isBuildOnly flag to true
2011 // and reset the os to Windows_NT
2012 def isBuildOnly = false
2013 if (os == 'Windows_NT_BuildOnly') {
2018 // Tizen is only supported for arm architecture
2019 if (os == 'Tizen' && architecture != 'arm') {
2023 // Skip totally unimplemented (in CI) configurations.
2024 switch (architecture) {
2026 if (os == 'Ubuntu16.04') {
2030 // Windows and Ubuntu only
2031 if ((os != 'Windows_NT' && os != 'Ubuntu') || isBuildOnly) {
2036 if ((os != 'Ubuntu') && (os != 'Ubuntu16.04') && (os != 'Tizen') && (os != 'Windows_NT')) {
2041 if (os != 'Windows_NT') {
2046 if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
2050 case 'x86_arm_altjit':
2051 case 'x64_arm64_altjit':
2052 if (os != 'Windows_NT') {
2057 // Everything implemented
2060 println("Unknown architecture: ${architecture}")
2065 // Skip scenarios (blanket skipping for jit stress modes, which are good most everywhere
2066 // with checked builds)
2067 if (isJitStressScenario(scenario)) {
2068 if (configuration != 'Checked') {
2072 // Since these are just execution time differences,
2073 // skip platforms that don't execute the tests here (Windows_NT only)
2074 def isEnabledOS = (os == 'Windows_NT') || (os == 'Ubuntu' && isCoreFxScenario(scenario))
2075 if (!isEnabledOS || isBuildOnly) {
2079 switch (architecture) {
2082 case 'x86_arm_altjit':
2083 case 'x64_arm64_altjit':
2084 // x86 ubuntu: default only
2085 if ((os == 'Ubuntu') && (architecture == 'x86')) {
2088 // Windows: Everything implemented
2092 // arm, arm64, armlb: stress is handled through flow jobs.
2096 else if (isR2RScenario(scenario)) {
2097 if (os != 'Windows_NT') {
2100 // Stress scenarios only run with Checked builds, not Release (they would work with Debug, but be slow).
2101 if ((configuration != 'Checked') && isR2RStressScenario(scenario)) {
2109 // The ilrt build isn't necessary except for Windows_NT2003. Non-Windows NT uses
2110 // the default scenario build
2111 if (os != 'Windows_NT') {
2115 if (architecture != 'x64') {
2119 if (configuration != 'Release') {
2124 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2127 if (architecture != 'x64') {
2130 if (configuration != 'Checked') {
2136 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2139 if (architecture != 'x64') {
2142 if (configuration != 'Release') {
2146 case 'gc_reliability_framework':
2147 case 'standalone_gc':
2148 if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
2152 if (architecture != 'x64') {
2156 if (configuration != 'Release' && configuration != 'Checked') {
2160 // We only run Windows and Ubuntu x64 Checked for formatting right now
2162 if (os != 'Windows_NT' && os != 'Ubuntu') {
2165 if (architecture != 'x64') {
2168 if (configuration != 'Checked') {
2176 if (os != 'Windows_NT' && (os != 'Ubuntu' || architecture != 'x64')) {
2179 if (architecture != 'x64' && architecture != 'x86') {
2190 println("Unknown scenario: ${scenario}")
2196 // For altjit, don't do any scenarios that don't change compilation. That is, scenarios that only change
2197 // runtime behavior, not compile-time behavior, are not interesting.
2198 switch (architecture) {
2199 case 'x86_arm_altjit':
2200 case 'x64_arm64_altjit':
2201 if (isGCStressRelatedTesting(scenario)) {
2210 def lowerConfiguration = configuration.toLowerCase()
2211 def jobName = getJobName(configuration, architecture, os, scenario, isBuildOnly)
2212 def folderName = getJobFolder(scenario)
2214 // Create the new job
2215 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folderName)) {}
2216 addToViews(newJob, isPR, architecture, os)
2218 def machineAffinityOptions = null
2220 if (os != 'Windows_NT') {
2221 machineAffinityOptions = architecture == 'arm64' ? ['is_build_only': true] : null
2224 machineAffinityOptions = (architecture == 'arm' || architecture == 'armlb' || architecture == 'arm64') ? ['use_arm64_build_machine': false] : null
2227 setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
2229 // Add all the standard options
2230 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
2231 addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly) // isFlowJob==false
2233 def buildCommands = calculateBuildCommands(newJob, scenario, branch, isPR, architecture, configuration, os, isBuildOnly)
2234 def osGroup = getOSGroup(os)
2238 if (os == 'Windows_NT') {
2239 buildCommands.each { buildCommand ->
2240 batchFile(buildCommand)
2244 // Setup corefx and Windows test binaries for Linux cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
2245 if ( architecture == 'arm' && ( os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen')) {
2246 // Cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
2247 // Define the Windows Tests and Corefx build job names
2248 def WindowsTestsName = projectFolder + '/' +
2249 Utilities.getFullJobName(project,
2250 getJobName(lowerConfiguration, 'x64' , 'windows_nt', 'default', true),
2252 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' +
2253 Utilities.getFolderName(branch)
2255 // Copy the Windows test binaries and the Corefx build binaries
2256 copyArtifacts(WindowsTestsName) {
2257 includePatterns('bin/tests/tests.zip')
2259 latestSuccessful(true)
2264 def corefx_os = 'linux'
2265 if (os == 'Tizen') {
2270 // Let's use release CoreFX to test checked CoreCLR,
2271 // because we do not generate checked CoreFX in CoreFX CI yet.
2272 def corefx_lowerConfiguration = lowerConfiguration
2273 if ( lowerConfiguration == 'checked' ) {
2274 corefx_lowerConfiguration='release'
2277 copyArtifacts("${corefxFolder}/${corefx_os}_${arm_abi}_cross_${corefx_lowerConfiguration}") {
2278 includePatterns('bin/build.tar.gz')
2280 latestSuccessful(true)
2285 buildCommands.each { buildCommand ->
2299 // Create jobs requiring flow jobs. This includes x64 non-Windows, arm64 Ubuntu, and arm/arm64/armlb Windows.
2300 Constants.allScenarios.each { scenario ->
2301 [true, false].each { isPR ->
2302 ['arm', 'armlb', 'x64', 'arm64', 'x86'].each { architecture ->
2303 Constants.crossList.each { os ->
2304 if (architecture == 'arm64') {
2305 if (os != "Ubuntu" && os != "Windows_NT") {
2308 } else if (architecture == 'arm' || architecture == 'armlb') {
2309 if (os != 'Windows_NT') {
2313 else if (architecture == 'x86') {
2314 if (os != "Ubuntu") {
2319 def validWindowsNTCrossArches = ["arm", "armlb", "arm64"]
2321 if (os == "Windows_NT" && !(architecture in validWindowsNTCrossArches)) {
2325 Constants.configurationList.each { configuration ->
2327 // First, filter based on OS.
2329 if (os == 'Windows_NT') {
2330 if (!isArmWindowsScenario(scenario)) {
2336 if (architecture == 'arm64') {
2337 if (scenario != 'default' && scenario != 'r2r' && scenario != 'gcstress0x3' && scenario != 'gcstress0xc') {
2341 else if (architecture == 'x86') {
2342 // Linux/x86 only want default test
2343 if (scenario != 'default') {
2349 // For CentOS, we only want Checked/Release builds.
2350 if (os == 'CentOS7.1') {
2351 if (configuration != 'Checked' && configuration != 'Release') {
2354 if (scenario != 'default' && !isR2RScenario(scenario) && !isJitStressScenario(scenario)) {
2359 // For RedHat and Debian, we only do Release builds.
2360 else if (os == 'RHEL7.2' || os == 'Debian8.4') {
2361 if (configuration != 'Release') {
2364 if (scenario != 'default') {
2369 // Next, filter based on scenario.
2371 if (isJitStressScenario(scenario)) {
2372 if (configuration != 'Checked') {
2375 // CoreFx JIT stress tests currently not implemented for flow jobs.
2376 if (isCoreFxScenario(scenario)) {
2380 else if (isR2RBaselineScenario(scenario)) {
2381 if (configuration != 'Checked' && configuration != 'Release') {
2385 else if (isR2RStressScenario(scenario)) {
2386 if (configuration != 'Checked') {
2396 // Long GC tests take a long time on non-Release builds
2397 // ilrt is also Release only
2398 if (configuration != 'Release') {
2403 if (configuration != 'Checked') {
2407 case 'gc_reliability_framework':
2408 case 'standalone_gc':
2409 if (configuration != 'Release' && configuration != 'Checked') {
2416 if (os != 'Windows_NT' && os != 'Ubuntu') {
2424 println("Unknown scenario: ${scenario}")
2430 // Done filtering. Now, create the jobs.
2432 def lowerConfiguration = configuration.toLowerCase()
2433 def osGroup = getOSGroup(os)
2434 def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
2436 def inputCoreCLRBuildName = projectFolder + '/' +
2437 Utilities.getFullJobName(project, getJobName(configuration, architecture, os, 'default', false), isPR)
2439 // If this is a stress scenario, there isn't any difference in the build job, so we didn't create a build only
2440 // job for Windows_NT specific to that stress mode. Just copy from the default scenario.
2441 def testBuildScenario = scenario
2442 if (isJitStressScenario(testBuildScenario) || isR2RScenario(testBuildScenario) || isLongGc(testBuildScenario)) {
2443 testBuildScenario = 'default'
2446 def inputWindowsTestBuildArch = architecture
2447 if (architecture == "arm64" && os != "Windows_NT") {
2448 // Use the x64 test build for arm64 unix
2449 inputWindowsTestBuildArch = "x64"
2452 def inputWindowsTestsBuildName = ""
2454 if (isJitStressScenario(scenario)) {
2455 inputWindowsTestsBuildName = projectFolder + '/' +
2456 Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', testBuildScenario, false), isPR)
2458 inputWindowsTestsBuildName = projectFolder + '/' +
2459 Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', testBuildScenario, true), isPR)
2464 // Enable Server GC for Ubuntu PR builds
2465 def serverGCString = ''
2466 if (os == 'Ubuntu' && isPR) {
2467 serverGCString = '--useServerGC'
2472 if (isR2RScenario(scenario)) {
2474 testOpts += ' --crossgen --runcrossgentests'
2476 if (scenario == 'r2r_jitstress1') {
2477 testOpts += ' --jitstress=1'
2479 else if (scenario == 'r2r_jitstress2') {
2480 testOpts += ' --jitstress=2'
2482 else if (scenario == 'r2r_jitstressregs1') {
2483 testOpts += ' --jitstressregs=1'
2485 else if (scenario == 'r2r_jitstressregs2') {
2486 testOpts += ' --jitstressregs=2'
2488 else if (scenario == 'r2r_jitstressregs3') {
2489 testOpts += ' --jitstressregs=3'
2491 else if (scenario == 'r2r_jitstressregs4') {
2492 testOpts += ' --jitstressregs=4'
2494 else if (scenario == 'r2r_jitstressregs8') {
2495 testOpts += ' --jitstressregs=8'
2497 else if (scenario == 'r2r_jitstressregs0x10') {
2498 testOpts += ' --jitstressregs=0x10'
2500 else if (scenario == 'r2r_jitstressregs0x80') {
2501 testOpts += ' --jitstressregs=0x80'
2503 else if (scenario == 'r2r_jitstressregs0x1000') {
2504 testOpts += ' --jitstressregs=0x1000'
2506 else if (scenario == 'r2r_jitminopts') {
2507 testOpts += ' --jitminopts'
2509 else if (scenario == 'r2r_jitforcerelocs') {
2510 testOpts += ' --jitforcerelocs'
2512 else if (scenario == 'r2r_gcstress15') {
2513 testOpts += ' --gcstresslevel=0xF'
2516 else if (scenario == 'jitdiff') {
2517 testOpts += ' --jitdisasm --crossgen'
2519 else if (scenario == 'illink') {
2520 testOpts += ' --link=\$WORKSPACE/linker/linker/bin/netcore_Release/netcoreapp2.0/ubuntu-x64/publish/illink'
2522 else if (isLongGc(scenario)) {
2523 // Long GC tests behave very poorly when they are not
2524 // the only test running (many of them allocate until OOM).
2525 testOpts += ' --sequential'
2527 // A note - runtest.sh does have "--long-gc" and "--gcsimulator" options
2528 // for running long GC and GCSimulator tests, respectively. We don't use them
2529 // here because using a playlist file produces much more readable output on the CI machines
2530 // and reduces running time.
2532 // The Long GC playlist contains all of the tests that are
2533 // going to be run. The GCSimulator playlist contains all of
2534 // the GC simulator tests.
2535 if (scenario == 'longgc') {
2536 testOpts += ' --long-gc --playlist=./tests/longRunningGcTests.txt'
2538 else if (scenario == 'gcsimulator') {
2539 testOpts += ' --gcsimulator --playlist=./tests/gcSimulatorTests.txt'
2542 else if (isGcReliabilityFramework(scenario)) {
2543 testOpts += ' --build-overlay-only'
2545 else if (scenario == 'standalone_gc') {
2546 if (osGroup == 'OSX') {
2547 testOpts += ' --gcname=libclrgc.dylib'
2549 else if (osGroup == 'Linux') {
2550 testOpts += ' --gcname=libclrgc.so'
2553 println("Unexpected OS group: ${osGroup} for os ${os}")
2558 def windowsArmJob = (os == "Windows_NT" && architecture in validWindowsNTCrossArches)
2560 def folder = getJobFolder(scenario)
2561 def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folder)) {
2562 // Add parameters for the inputs
2564 if (windowsArmJob == true) {
2566 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2571 stringParam('CORECLR_WINDOWS_BUILD', '', 'Build number to copy CoreCLR windows test binaries from')
2572 stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
2577 // Set up the copies
2579 // Coreclr build containing the tests and mscorlib
2580 // pri1 jobs still need to copy windows_nt built tests
2581 if (windowsArmJob != true) {
2582 copyArtifacts(inputWindowsTestsBuildName) {
2583 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2585 buildNumber('${CORECLR_WINDOWS_BUILD}')
2590 // Coreclr build we are trying to test
2592 // ** NOTE ** This will, correctly, overwrite over the CORE_ROOT from the windows test archive
2594 copyArtifacts(inputCoreCLRBuildName) {
2595 excludePatterns('**/testResults.xml', '**/*.ni.dll')
2597 buildNumber('${CORECLR_BUILD}')
2601 // Windows CoreCLR Arm(64) will restore corefx
2602 // packages correctly.
2604 // In addition, test steps are entirely different
2605 // because we do not have a unified runner
2606 if (windowsArmJob != true) {
2607 def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(branch)
2609 // HACK -- Arm64 does not have corefx jobs yet.
2610 // Clone corefx and build the native packages overwriting the x64 packages.
2611 if (architecture == 'arm64') {
2612 shell("cp ./bin/Product/Linux.arm64.${configuration}/corefxNative/* ./bin/CoreFxBinDir")
2613 shell("chmod +x ./bin/Product/Linux.arm64.${configuration}/corerun")
2615 else if (architecture == 'x86') {
2616 shell("mkdir ./bin/CoreFxNative")
2618 copyArtifacts("${corefxFolder}/ubuntu16.04_x86_release") {
2619 includePatterns('bin/build.tar.gz')
2620 targetDirectory('bin/CoreFxNative')
2622 latestSuccessful(true)
2626 shell("tar -xf ./bin/CoreFxNative/bin/build.tar.gz -C ./bin/CoreFxBinDir")
2629 // Unzip the tests first. Exit with 0
2630 shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/${osGroup}.${architecture}.${configuration} || exit 0")
2631 shell("rm -r ./bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root || exit 0")
2633 shell("./build-test.sh ${architecture} ${configuration} generatelayoutonly")
2635 // Execute the tests
2636 def runDocker = isNeedDocker(architecture, os, false)
2637 def dockerPrefix = ""
2640 def dockerImage = getDockerImageName(architecture, os, false)
2641 dockerPrefix = "docker run -i --rm -v \${WORKSPACE}:\${WORKSPACE} -w \${WORKSPACE} "
2642 dockerCmd = dockerPrefix + "${dockerImage} "
2645 // If we are running a stress mode, we'll set those variables first
2647 if (isJitStressScenario(scenario)) {
2648 def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
2649 def envScriptCmds = envScriptCreate(os, scriptFileName)
2650 envScriptCmds += envScriptSetStressModeVariables(os, Constants.jitStressModeScenarios[scenario], scriptFileName)
2651 envScriptCmds += envScriptFinalize(os, scriptFileName)
2652 shell("${envScriptCmds}")
2653 testEnvOpt = "--test-env=" + scriptFileName
2656 if (isGCStressRelatedTesting(scenario)) {
2657 shell('./init-tools.sh')
2660 shell("""${dockerCmd}./tests/runtest.sh \\
2661 --testRootDir=\"\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}\" \\
2662 --coreOverlayDir=\"\${WORKSPACE}/bin/tests/${osGroup}.${architecture}.${configuration}/Tests/Core_Root\" \\
2663 --testNativeBinDir=\"\${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
2664 --copyNativeTestBin --limitedDumpGeneration ${testEnvOpt} ${serverGCString} ${testOpts}""")
2666 if (isGcReliabilityFramework(scenario)) {
2667 // runtest.sh doesn't actually execute the reliability framework - do it here.
2668 if (serverGCString != '') {
2670 dockerCmd = dockerPrefix + "-e COMPlus_gcServer=1 ${dockerImage} "
2673 shell("export COMPlus_gcServer=1")
2677 shell("${dockerCmd}./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")
2681 else { // windowsArmJob == true
2683 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}')")
2685 // Build the build commands
2686 def buildCommands = ""
2688 def coreRootLocation = "%WORKSPACE%\\bin\\tests\\Windows_NT.${architecture}.${configuration}\\Tests\\Core_Root"
2689 def addEnvVariable = { variable, value -> buildCommands += "set ${variable}=${value}\r\n"}
2690 def addCommand = { cmd -> buildCommands += "${cmd}\r\n"}
2692 // Make sure Command Extensions are enabled. Used so %ERRORLEVEL% is available.
2693 addCommand("SETLOCAL ENABLEEXTENSIONS")
2696 addEnvVariable("CORE_ROOT", coreRootLocation)
2698 addEnvVariable("COMPlus_NoGuiOnAssert", "1")
2699 addEnvVariable("COMPlus_ContinueOnAssert", "0")
2701 // ARM legacy backend; this is an altjit.
2702 if (architecture == "armlb") {
2703 addEnvVariable("COMPlus_AltJit", "*")
2704 addEnvVariable("COMPlus_AltJitNgen", "*")
2705 addEnvVariable("COMPlus_AltJitName", "legacyjit.dll")
2706 addEnvVariable("COMPlus_AltJitAssertOnNYI", "1")
2709 // If we are running a stress mode, we'll set those variables as well
2710 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
2711 def stressValues = null
2712 if (isJitStressScenario(scenario)) {
2713 stressValues = Constants.jitStressModeScenarios[scenario]
2716 stressValues = Constants.r2rStressScenarios[scenario]
2719 stressValues.each { key, value ->
2720 addEnvVariable(key, value)
2724 if (isR2RScenario(scenario)) {
2725 // Crossgen the framework assemblies.
2726 buildCommands += """
2727 @for %%F in (%CORE_ROOT%\\*.dll) do @call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
2728 @goto skip_PrecompileAssembly
2731 @REM Skip mscorlib since it is already precompiled.
2732 @if /I "%3" == "mscorlib.dll" exit /b 0
2733 @if /I "%3" == "mscorlib.ni.dll" exit /b 0
2735 "%CORE_ROOT%\\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" %2 >nul 2>nul
2736 @if "%errorlevel%" == "-2146230517" (
2737 echo %2 is not a managed assembly.
2738 ) else if "%errorlevel%" == "-2146234344" (
2739 echo %2 is not a managed assembly.
2740 ) else if %errorlevel% neq 0 (
2741 echo Unable to precompile %2
2747 :skip_PrecompileAssembly
2750 // Set RunCrossGen variable to cause test wrappers to invoke their logic to run
2751 // crossgen on tests before running them.
2752 addEnvVariable("RunCrossGen", "true")
2755 // Create the smarty command
2756 def smartyCommand = "C:\\Tools\\Smarty.exe /noecid /noie /workers 9 /inc EXPECTED_PASS "
2757 def addSmartyFlag = { flag -> smartyCommand += flag + " "}
2758 def addExclude = { exclude -> addSmartyFlag("/exc " + exclude)}
2760 def addArchSpecificExclude = { architectureToExclude, exclude -> if (architectureToExclude == "armlb") { addExclude("LEGACYJIT_" + exclude) } else { addExclude(exclude) } }
2762 if (architecture == "armlb") {
2763 addExclude("LEGACYJIT_FAIL")
2766 if (isJitStressScenario(scenario) || isR2RStressScenario(scenario)) {
2767 def failTag = "JITSTRESS_FAIL"
2768 def excludeTag = "JITSTRESS_EXCLUDE"
2770 if (scenario.contains('gc')) {
2771 failTag = "GCSTRESS_FAIL"
2772 excludeTag = "GCSTRESS_EXCLUDE"
2775 addArchSpecificExclude(architecture, failTag)
2776 addArchSpecificExclude(architecture, excludeTag)
2782 // Exclude any test marked LONG_RUNNING; these often exceed the standard timeout and fail as a result.
2783 // TODO: We should create a "long running" job that runs these with a longer timeout.
2784 addExclude("LONG_RUNNING")
2786 smartyCommand += "/lstFile Tests.lst"
2788 def testListArch = [
2794 def archLocation = testListArch[architecture]
2796 addCommand("copy %WORKSPACE%\\tests\\${archLocation}\\Tests.lst bin\\tests\\${osGroup}.${architecture}.${configuration}")
2797 addCommand("pushd bin\\tests\\${osGroup}.${architecture}.${configuration}")
2798 addCommand("${smartyCommand}")
2800 // Save the errorlevel from the smarty command to be used as the errorlevel of this batch file.
2801 // However, we also need to remove all the variables that were set during this batch file, so we
2802 // can run the ZIP powershell command (below) in a clean environment. (We can't run the powershell
2803 // command with the COMPlus_AltJit variables set, for example.) To do that, we do ENDLOCAL as well
2804 // as save the current errorlevel on the same line. This works because CMD evaluates the %errorlevel%
2805 // variable expansion (or any variable expansion on the line) BEFORE it executes the ENDLOCAL command.
2806 // Note that the ENDLOCAL also undoes the pushd command, but we add the popd here for clarity.
2807 addCommand("popd & ENDLOCAL & set __save_smarty_errorlevel=%errorlevel%")
2809 // ZIP up the smarty output, no matter what the smarty result.
2810 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')\"")
2812 addCommand("echo %errorlevel%")
2813 addCommand("dir .\\bin\\tests\\${osGroup}.${architecture}.${configuration}")
2815 // Use the smarty errorlevel as the script errorlevel.
2816 addCommand("exit /b %__save_smarty_errorlevel%")
2818 batchFile(buildCommands)
2823 addToViews(newJob, isPR, architecture, os)
2825 if (scenario == 'jitdiff') {
2826 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/dasm/**")
2829 // Experimental: If on Ubuntu 14.04, then attempt to pull in crash dump links
2830 if (os in ['Ubuntu']) {
2831 SummaryBuilder summaries = new SummaryBuilder()
2832 summaries.addLinksSummaryFromFile('Crash dumps from this run:', 'dumplings.txt')
2833 summaries.emit(newJob)
2836 def affinityOptions = null
2838 if (windowsArmJob == true) {
2840 "use_arm64_build_machine" : false
2844 else if (architecture == 'arm64' && os != 'Windows_NT') {
2846 "large_pages" : false
2850 setMachineAffinity(newJob, os, architecture, affinityOptions)
2851 Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
2853 setJobTimeout(newJob, isPR, architecture, configuration, scenario, false)
2855 if (windowsArmJob != true) {
2856 Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml')
2859 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.run.0/*.smrt", '', true, false)
2861 // Archive a ZIP file of the entire Smarty.run.0 directory. This is possibly a little too much,
2862 // but there is no easy way to only archive the HTML/TXT files of the failing tests, so we get
2863 // all the passing test info as well. Not necessarily a bad thing, but possibly somewhat large.
2864 Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.run.0.zip", '', true, false)
2867 // Create a build flow to join together the build and tests required to run this test.
2868 // Windows CoreCLR build and Linux CoreCLR build (in parallel) ->
2869 // Linux CoreCLR test
2870 def flowJobName = getJobName(configuration, architecture, os, scenario, false) + "_flow"
2871 def fullTestJobName = projectFolder + '/' + newJob.name
2872 // Add a reference to the input jobs for report purposes
2873 JobReport.Report.addReference(inputCoreCLRBuildName)
2874 JobReport.Report.addReference(inputWindowsTestsBuildName)
2875 JobReport.Report.addReference(fullTestJobName)
2876 def newFlowJob = null
2878 if (os == 'RHEL7.2' || os == 'Debian8.4') {
2879 // Do not create the flow job for RHEL jobs.
2883 // For pri0 jobs we can build tests on unix
2884 if (windowsArmJob) {
2885 // For Windows arm jobs there is no reason to build a parallel test job.
2886 // The product build supports building and archiving the tests.
2888 newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
2890 coreclrBuildJob = build(params, '${inputCoreCLRBuildName}')
2892 // And then build the test build
2893 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number], '${fullTestJobName}')
2898 newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
2900 // Build the input jobs in parallel
2902 { coreclrBuildJob = build(params, '${inputCoreCLRBuildName}') },
2903 { windowsBuildJob = build(params, '${inputWindowsTestsBuildName}') }
2906 // And then build the test build
2907 build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
2908 CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}')
2913 addToViews(newFlowJob, isPR, architecture, os)
2915 // For the flow jobs set the machine affinity as x64 if an armarch.
2916 def flowArch = architecture
2918 if (flowArch in validWindowsNTCrossArches) {
2920 affinityOptions = null
2923 setMachineAffinity(newFlowJob, os, flowArch, affinityOptions)
2924 Utilities.standardJobSetup(newFlowJob, project, isPR, "*/${branch}")
2925 addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false) // isFlowJob==true, isWindowsBuildOnlyJob==false
2932 JobReport.Report.generateJobReport(out)
2934 // Make the call to generate the help job
2935 Utilities.createHelperJob(this, project, branch,
2936 "Welcome to the ${project} Repository", // This is prepended to the help message
2937 "Have a nice day!") // This is appended to the help message. You might put known issues here.
2939 Utilities.addCROSSCheck(this, project, branch)