From e2ec23676cdf7e30c2f5691c3d74c062658284c1 Mon Sep 17 00:00:00 2001 From: Michelle McDaniel Date: Thu, 21 Mar 2019 09:20:40 -0700 Subject: [PATCH] Change perf smoketest queue (#23371) We have installed python3 on all of the Helix queues, so we no longer need to be on a special perf queue for the smoketest runs. --- perf.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perf.groovy b/perf.groovy index ac7222d..a8316e4 100644 --- a/perf.groovy +++ b/perf.groovy @@ -41,7 +41,7 @@ def static getOSGroup(def os) { def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) { // Set the label. if (isSmoketest) { - label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf') + label('Windows.10.Amd64.ClientRS4.DevEx.15.8.Open') python = "C:\\python3.7.0\\python.exe" } else { @@ -767,7 +767,7 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) { ['x64', 'x86'].each { arch -> def architecture = arch def newJob = job(Utilities.getFullJobName(project, "sizeondisk_${arch}", false)) { - label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf') + label('Windows.10.Amd64.ClientRS4.DevEx.15.8.Open') wrappers { credentialsBinding { @@ -853,7 +853,7 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) { ['full_opt'].each { opt_level -> def architecture = arch def newJob = job(Utilities.getFullJobName(project, "perf_illink_${os}_${arch}_${opt_level}_${jit}", isPR)) { - label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf') + label('Windows.10.Amd64.ClientRS4.DevEx.15.8.Open') def testEnv = "" def python = "C:\\python3.7.0\\python.exe" -- 2.7.4