Skip to content

Commit

Permalink
Merge pull request dotnet#4956 from mmitche/gcstress-no-push
Browse files Browse the repository at this point in the history
Run gcstress pri1r2r only a few times a week
  • Loading branch information
mmitche committed May 13, 2016
2 parents f2465a8 + 6b07b26 commit 545810c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -363,13 +363,14 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
if (architecture == 'x64') {
//Flow jobs should be Windows, Ubuntu, OSX, or CentOS
if (isFlowJob || os == 'Windows_NT') {
Utilities.addGithubPushTrigger(job)
// Add a weekly periodic trigger
Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
}
}
// For x86, only add per-commit jobs for Windows
else if (architecture == 'x86ryujit' || architecture == 'x86lb') {
if (os == 'Windows_NT') {
Utilities.addGithubPushTrigger(job)
Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
}
}
}
Expand Down

0 comments on commit 545810c

Please sign in to comment.