diff options
author | Kyungwoo Lee <kyulee@microsoft.com> | 2016-07-18 08:49:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-18 08:49:37 -0700 |
commit | 6d9906925d65fb96ccb8bf31298673c6581a62b9 (patch) | |
tree | 3062d2951123f528cf4a1237f85091c6361ee2fa | |
parent | 4ec1a4908f5fa5ef59af83399600b5727f95486d (diff) | |
parent | 0105a941698c7d85b0881fa211031a5ba848df7b (diff) | |
download | coreclr-6d9906925d65fb96ccb8bf31298673c6581a62b9.tar.gz coreclr-6d9906925d65fb96ccb8bf31298673c6581a62b9.tar.bz2 coreclr-6d9906925d65fb96ccb8bf31298673c6581a62b9.zip |
Merge pull request #6315 from kyulee1/disemail
ARM64: Temporarrily disable email notification
-rwxr-xr-x | netci.groovy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy index 225ae57fda..845fa6133a 100755 --- a/netci.groovy +++ b/netci.groovy @@ -324,7 +324,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, case 'arm64': if (os == 'Windows_NT') { Utilities.addGithubPushTrigger(job) - addEmailPublisher(job, 'dotnetonarm64@microsoft.com') + //addEmailPublisher(job, 'dotnetonarm64@microsoft.com') } break default: @@ -381,7 +381,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, else if (architecture == 'arm64') { if (os == 'Windows_NT') { Utilities.addPeriodicTrigger(job, 'H H/12 * * *') - addEmailPublisher(job, 'dotnetonarm64@microsoft.com') + //addEmailPublisher(job, 'dotnetonarm64@microsoft.com') } } } @@ -496,7 +496,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, if (architecture == 'arm64') { assert (os == 'Windows_NT') Utilities.addPeriodicTrigger(job, '@daily') - addEmailPublisher(job, 'dotnetonarm64@microsoft.com') + //addEmailPublisher(job, 'dotnetonarm64@microsoft.com') } else { Utilities.addPeriodicTrigger(job, '@weekly') |