@@ -258,17 +258,6 @@ def static getJobName(def configuration, def architecture, def os, def scenario,
258
258
return baseName + suffix
259
259
}
260
260
261
- static void addEmailPublisher (def job , def recipient ) {
262
- job. with {
263
- publishers {
264
- extendedEmail(recipient, ' $DEFAULT_SUBJECT' , ' $DEFAULT_CONTENT' ) {
265
- trigger(' Aborted' , ' $PROJECT_DEFAULT_SUBJECT' , ' $PROJECT_DEFAULT_CONTENT' , null , true , true , true , true )
266
- trigger(' Failure' , ' $PROJECT_DEFAULT_SUBJECT' , ' $PROJECT_DEFAULT_CONTENT' , null , true , true , true , true )
267
- }
268
- }
269
- }
270
- }
271
-
272
261
// **************************
273
262
// Define the basic inner loop builds for PR and commit. This is basically just the set
274
263
// of coreclr builds over linux/osx/freebsd/windows and debug/release/checked. In addition, the windows
@@ -304,7 +293,8 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
304
293
case ' arm64' :
305
294
if (os == ' Windows_NT' ) {
306
295
Utilities . addGithubPushTrigger(job)
307
- addEmailPublisher(job,
' [email protected] ' )
296
+ // TODO: Add once external email sending is available again
297
+ // addEmailPublisher(job, '[email protected] ')
308
298
}
309
299
break
310
300
default :
@@ -395,14 +385,16 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
395
385
assert configuration == ' Release'
396
386
assert architecture == ' x64'
397
387
Utilities . addPeriodicTrigger(job, ' @daily' )
398
- addEmailPublisher(job,
' [email protected] ' )
388
+ // TODO: Add once external email sending is available again
389
+ // addEmailPublisher(job, '[email protected] ')
399
390
break
400
391
case ' gcsimulator' :
401
392
assert (os == ' Ubuntu' || os == ' Windows_NT' || os == ' OSX' )
402
393
assert configuration == ' Release'
403
394
assert architecture == ' x64'
404
395
Utilities . addPeriodicTrigger(job, ' H H * * 3,6' ) // some time every Wednesday and Saturday
405
- addEmailPublisher(job,
' [email protected] ' )
396
+ // TODO: Add once external email sending is available again
397
+ // addEmailPublisher(job, '[email protected] ')
406
398
break
407
399
case ' ilrt' :
408
400
assert ! (os in bidailyCrossList)
@@ -2115,7 +2107,8 @@ combinedScenarios.each { scenario ->
2115
2107
if (scenario == ' coverage' ) {
2116
2108
// Publish coverage reports
2117
2109
Utilities . addHtmlPublisher(newJob, ' ${WORKSPACE}/coverage' , ' Code Coverage Report' , ' coreclr.html' )
2118
- addEmailPublisher(newJob,
' [email protected] ' )
2110
+ // TODO: Add once external email sending is available again
2111
+ // addEmailPublisher(newJob, '[email protected] ')
2119
2112
}
2120
2113
2121
2114
setMachineAffinity(newJob, os, architecture)
0 commit comments