summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorMichelle McDaniel <adiaaida@gmail.com>2018-10-24 10:51:34 -0700
committerGitHub <noreply@github.com>2018-10-24 10:51:34 -0700
commit8939f019c34febbf0bab9dcc0f13b9ddc58735d8 (patch)
tree9d176d4d3b0883e29373e59655fe7ad21118ddeb /perf.groovy
parent58f6d24dc7a32ad758b8b3806747e7431243a458 (diff)
downloadcoreclr-8939f019c34febbf0bab9dcc0f13b9ddc58735d8.tar.gz
coreclr-8939f019c34febbf0bab9dcc0f13b9ddc58735d8.tar.bz2
coreclr-8939f019c34febbf0bab9dcc0f13b9ddc58735d8.zip
Move ILLink and SizeOnDisk testing to Helix Queue (#20569)
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 ac194acb8a..adb4af36d9 100644
--- a/perf.groovy
+++ b/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}")