Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 9b5876a

Browse files
Update the perf smoketests to use Helix queue (#20817)
1 parent 1c5dc61 commit 9b5876a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

perf.groovy

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,12 @@ def static getOSGroup(def os) {
3939

4040
def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) {
4141
// Set the label.
42-
label('windows_server_2016_clr_perf')
42+
if (isSmoketest) {
43+
label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf')
44+
}
45+
else {
46+
label('windows_server_2016_clr_perf')
47+
}
4348
wrappers {
4449
credentialsBinding {
4550
string('BV_UPLOAD_SAS_TOKEN', 'CoreCLR Perf BenchView Sas')
@@ -102,9 +107,6 @@ def static getOSGroup(def os) {
102107
}
103108
}
104109

105-
if (isSmoketest) {
106-
Utilities.setMachineAffinity(newJob, "Windows_NT", '20170427-elevated')
107-
}
108110
def archiveSettings = new ArchivalSettings()
109111
archiveSettings.addFiles('bin/sandbox_logs/**')
110112
archiveSettings.addFiles('machinedata.json')

0 commit comments

Comments
 (0)