summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorJosé Rivero <jorive@microsoft.com>2017-08-29 18:10:32 -0700
committerGitHub <noreply@github.com>2017-08-29 18:10:32 -0700
commit434e1955d5b211e1953e074f2314bf7d05d03053 (patch)
treeacde206e0bce2a418113936f3b2f827a3aed02f7 /perf.groovy
parent79c97d9d008e7ffc5208e0932c878357b3013ebd (diff)
downloadcoreclr-434e1955d5b211e1953e074f2314bf7d05d03053.tar.gz
coreclr-434e1955d5b211e1953e074f2314bf7d05d03053.tar.bz2
coreclr-434e1955d5b211e1953e074f2314bf7d05d03053.zip
IlLink perf stopped running because the VM pool name does not exist. (#13672)
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy5
1 files changed, 2 insertions, 3 deletions
diff --git a/perf.groovy b/perf.groovy
index 9010ddfae6..5ff3984307 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -692,9 +692,6 @@ parallel(
def newJob = job(Utilities.getFullJobName(project, "perf_illink_${os}_${arch}_${opt_level}_${jit}", isPR)) {
def testEnv = ""
-
- // Set the label (currently we are only measuring size, therefore we are running on VM).
- label('20170427-elevated')
wrappers {
credentialsBinding {
string('BV_UPLOAD_SAS_TOKEN', 'CoreCLR Perf BenchView Sas')
@@ -747,6 +744,8 @@ parallel(
archiveSettings.addFiles('bin/toArchive/**')
archiveSettings.addFiles('machinedata.json')
+ // 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}")