diff --git a/buildpipeline/perf-pipeline.groovy b/buildpipeline/perf-pipeline.groovy index 8992452a9af7..2251f3c88777 100644 --- a/buildpipeline/perf-pipeline.groovy +++ b/buildpipeline/perf-pipeline.groovy @@ -364,13 +364,13 @@ if (!isPR()) { ['min_opt', 'full_opt'].each { opt_level -> ['pgo', 'nopgo'].each { pgo_enabled -> outerLoopTests["linux ${arch} ryujit ${opt_level} ${pgo_enabled} perf"] = { - simpleNode('linux_clr_perf', 180) { + simpleNode('ubuntu_1604_clr_perf', 180) { linuxPerf(arch, 'Ubuntu14.04', config, uploadString, runType, opt_level, pgo_enabled, false) } } outerLoopTests["linux ${arch} ryujit ${opt_level} ${pgo_enabled} throughput"] = { - simpleNode('linux_clr_perf', 180) { + simpleNode('ubuntu_1604_clr_perf', 180) { linuxThroughput(arch, 'Ubuntu14.04', config, uploadString, runType, opt_level, pgo_enabled, false) } } diff --git a/perf.groovy b/perf.groovy index 04dc4ef0bd6c..7046e5ba86d5 100644 --- a/perf.groovy +++ b/perf.groovy @@ -288,7 +288,7 @@ def static getFullPerfJobName(def project, def os, def isPR) { perfOSList.each { os -> def newJob = job(getFullPerfJobName(project, os, isPR)) { - label('linux_clr_perf') + label('ubuntu_1604_clr_perf') wrappers { credentialsBinding { string('BV_UPLOAD_SAS_TOKEN', 'CoreCLR Perf BenchView Sas') @@ -441,7 +441,7 @@ def static getFullThroughputJobName(def project, def os, def isPR) { throughputOptLevelList.each { opt_level -> def newJob = job(getFullThroughputJobName(project, "${os}_${opt_level}", isPR)) { - label('linux_clr_perf') + label('ubuntu_1604_clr_perf') wrappers { credentialsBinding { string('BV_UPLOAD_SAS_TOKEN', 'CoreCLR Perf BenchView Sas')