Skip to content

Commit 5c8827d

Browse files
Fix non-PR perf pipeline job (dotnet#15438)
1 parent 7e84010 commit 5c8827d

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

buildpipeline/perf-pipeline.groovy

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -375,15 +375,17 @@ def innerLoopTests = [:]
375375
def outerLoopTests = [:]
376376

377377
if (!isPR()) {
378-
outerLoopTests["windows ${arch} ryujit full_opt pgo${baseline} jitbench"] = {
379-
simpleNode('windows_server_2016_clr_perf', 180) {
380-
windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'jitbench', false, false, '')
378+
['x64', 'x86'].each { arch ->
379+
outerLoopTests["windows ${arch} ryujit full_opt pgo jitbench"] = {
380+
simpleNode('windows_server_2016_clr_perf', 180) {
381+
windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'jitbench', false, false, '')
382+
}
381383
}
382-
}
383384

384-
outerLoopTests["windows ${arch} ryujit full_opt pgo${baseline} illink"] = {
385-
simpleNode('Windows_NT', '20170427-elevated') {
386-
windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'illink', false, false, '')
385+
outerLoopTests["windows ${arch} ryujit full_opt pgo illink"] = {
386+
simpleNode('Windows_NT', '20170427-elevated') {
387+
windowsPerf(arch, config, uploadString, runType, 'full_opt', 'ryujit', 'pgo', 'illink', false, false, '')
388+
}
387389
}
388390
}
389391

buildpipeline/perf_pipelinejobs.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ pipeline.triggerPipelineOnGithubPRComment(triggerName, params)
3232

3333
// Disable automatic PR runs until throughput issues are addressed.
3434
// pipeline.triggerPipelineOnEveryGithubPR(triggerName, params)
35-
pipeline.triggerPipelinePeriodically('*/12 * * * *')
35+
pipeline.triggerPipelinePeriodically('*/12 * * * *', params)

0 commit comments

Comments
 (0)