summaryrefslogtreecommitdiff
path: root/buildpipeline/perf-pipeline.groovy
diff options
context:
space:
mode:
authorMichelle McDaniel <adiaaida@gmail.com>2017-12-11 07:53:30 -0800
committerGitHub <noreply@github.com>2017-12-11 07:53:30 -0800
commit5c8827df27f2d88a21eecbe2ec577ff0a6187506 (patch)
tree75038841cf93dc8ac86ba93bd32c21a85c3307f6 /buildpipeline/perf-pipeline.groovy
parent7e84010dafaec33b7eabe1d07fc7bdf40704c577 (diff)
downloadcoreclr-5c8827df27f2d88a21eecbe2ec577ff0a6187506.tar.gz
coreclr-5c8827df27f2d88a21eecbe2ec577ff0a6187506.tar.bz2
coreclr-5c8827df27f2d88a21eecbe2ec577ff0a6187506.zip
Fix non-PR perf pipeline job (#15438)
Diffstat (limited to 'buildpipeline/perf-pipeline.groovy')
-rw-r--r--buildpipeline/perf-pipeline.groovy16
1 files changed, 9 insertions, 7 deletions
diff --git a/buildpipeline/perf-pipeline.groovy b/buildpipeline/perf-pipeline.groovy
index 88b6925b01..04eaadf0d8 100644
--- a/buildpipeline/perf-pipeline.groovy
+++ b/buildpipeline/perf-pipeline.groovy
@@ -375,15 +375,17 @@ def innerLoopTests = [:]
def outerLoopTests = [:]
if (!isPR()) {
- outerLoopTests["windows ${arch} ryujit full_opt pgo${baseline} jitbench"] = {
- simpleNode('windows_server_2016_clr_perf', 180) {
- windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'jitbench', false, false, '')
+ ['x64', 'x86'].each { arch ->
+ outerLoopTests["windows ${arch} ryujit full_opt pgo jitbench"] = {
+ simpleNode('windows_server_2016_clr_perf', 180) {
+ windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'jitbench', false, false, '')
+ }
}
- }
- outerLoopTests["windows ${arch} ryujit full_opt pgo${baseline} illink"] = {
- simpleNode('Windows_NT', '20170427-elevated') {
- windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'illink', false, false, '')
+ outerLoopTests["windows ${arch} ryujit full_opt pgo illink"] = {
+ simpleNode('Windows_NT', '20170427-elevated') {
+ windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'illink', false, false, '')
+ }
}
}