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

Commit 12ab7fc

Browse files
Turn off outerloop perf and make job run periodically (#15416)
This is mostly for testing purposes.
1 parent 59b3388 commit 12ab7fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buildpipeline/perf-pipeline.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ if (isPR()) {
343343
}*/
344344

345345
stage ('Build Product') {
346-
parallel innerLoopBuilds + outerLoopBuilds //+ baselineBuilds
346+
parallel innerLoopBuilds //+ outerLoopBuilds //+ baselineBuilds
347347
}
348348

349349
// Pipeline builds don't allow outside scripts (ie ArrayList.Add) if running from a script from SCM, so manually list these for now.
@@ -429,5 +429,5 @@ if (!isPR()) {
429429
}
430430

431431
stage ('Run testing') {
432-
parallel innerLoopTests + outerLoopTests
432+
parallel innerLoopTests //+ outerLoopTests
433433
}

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.triggerPipelineOnGithubPush()
35+
pipeline.triggerPipelinePeriodically('*/12 * * * *')

0 commit comments

Comments
 (0)