summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnetci.groovy6
1 files changed, 3 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy
index a34ccedd8e..3787e54a4d 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -323,7 +323,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:
@@ -380,7 +380,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')
}
}
}
@@ -495,7 +495,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')