From 36415889747eb4f59a657484530de92da8b86851 Mon Sep 17 00:00:00 2001 From: Drew Scoggins Date: Fri, 3 Feb 2017 15:08:19 -0800 Subject: Add x86 perf runs to CoreCLR This is a change to add x86 perf runs to the CoreCLR repo. This also changes the command to launch a perf run from a PR to include the architecture. --- perf.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perf.groovy') diff --git a/perf.groovy b/perf.groovy index 6b09310818..12d3d6d642 100644 --- a/perf.groovy +++ b/perf.groovy @@ -27,8 +27,8 @@ def static getOSGroup(def os) { // Setup perflab tests runs [true, false].each { isPR -> ['Windows_NT'].each { os -> - ['x64'].each { architecture -> - def newJob = job(Utilities.getFullJobName(project, "perf_perflab_${os}", isPR)) { + ['x64', 'x86'].each { architecture -> + def newJob = job(Utilities.getFullJobName(project, "perf_perflab_${os}_${architecture}", isPR)) { // Set the label. label('windows_clr_perf') wrappers { @@ -76,9 +76,9 @@ def static getOSGroup(def os) { if (isPR) { TriggerBuilder builder = TriggerBuilder.triggerOnPullRequest() - builder.setGithubContext("${os} CoreCLR Perf Tests") + builder.setGithubContext("${os} ${architecture} CoreCLR Perf Tests") builder.triggerOnlyOnComment() - builder.setCustomTriggerPhrase("(?i).*test\\W+${os}\\W+perf.*") + builder.setCustomTriggerPhrase("(?i).*test\\W+${os}$_{architecture}\\W+perf.*") builder.triggerForBranch(branch) builder.emitTrigger(newJob) } -- cgit v1.2.3