From e5d5f199d3d9020b12c6ac68d0a21ddd0bec2744 Mon Sep 17 00:00:00 2001 From: Michelle McDaniel Date: Wed, 24 Oct 2018 10:51:34 -0700 Subject: [PATCH] Move ILLink and SizeOnDisk testing to Helix Queue (dotnet/coreclr#20569) Commit migrated from https://github.com/dotnet/coreclr/commit/8939f019c34febbf0bab9dcc0f13b9ddc58735d8 --- src/coreclr/perf.groovy | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/coreclr/perf.groovy b/src/coreclr/perf.groovy index ac194ac..adb4af3 100644 --- a/src/coreclr/perf.groovy +++ b/src/coreclr/perf.groovy @@ -753,6 +753,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') wrappers { credentialsBinding { @@ -802,8 +803,6 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) { } } - Utilities.setMachineAffinity(newJob, "Windows_NT", '20170427-elevated') - def archiveSettings = new ArchivalSettings() archiveSettings.addFiles('bin/toArchive/**') archiveSettings.addFiles('machinedata.json') @@ -839,6 +838,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') def testEnv = "" wrappers { @@ -900,7 +900,6 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) { archiveSettings.setAlwaysArchive() // Set the label (currently we are only measuring size, therefore we are running on VM). - Utilities.setMachineAffinity(newJob, "Windows_NT", '20170427-elevated') Utilities.addArchival(newJob, archiveSettings) Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}") -- 2.7.4