diff options
author | Michelle McDaniel <adiaaida@gmail.com> | 2018-09-19 14:25:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 14:25:15 -0700 |
commit | d529163b2dbc880117f436d8a824d531b1506346 (patch) | |
tree | 36209353f89e9fb627dc42490cd227c81714ede6 | |
parent | a35087fd0d87ce98f4e3a26902d01c8afcf7119c (diff) | |
download | coreclr-d529163b2dbc880117f436d8a824d531b1506346.tar.gz coreclr-d529163b2dbc880117f436d8a824d531b1506346.tar.bz2 coreclr-d529163b2dbc880117f436d8a824d531b1506346.zip |
Move smoketests to use Helix queue (#20017)
-rw-r--r-- | perf.groovy | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/perf.groovy b/perf.groovy index 906d4898d1..3e9b1fad34 100644 --- a/perf.groovy +++ b/perf.groovy @@ -39,7 +39,12 @@ def static getOSGroup(def os) { def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) { // Set the label. - label('windows_server_2016_clr_perf') + if (isSmoketest) { + label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf') + } + else { + label('windows_server_2016_clr_perf') + } wrappers { credentialsBinding { string('BV_UPLOAD_SAS_TOKEN', 'CoreCLR Perf BenchView Sas') @@ -102,9 +107,6 @@ def static getOSGroup(def os) { } } - if (isSmoketest) { - Utilities.setMachineAffinity(newJob, "Windows_NT", '20170427-elevated') - } def archiveSettings = new ArchivalSettings() archiveSettings.addFiles('bin/sandbox_logs/**/*_log.txt') archiveSettings.addFiles('bin/sandbox_logs/**/*.csv') |