@@ -282,17 +282,6 @@ def static getJobName(def configuration, def architecture, def os, def scenario,
282
282
return baseName + suffix
283
283
}
284
284
285
- static void addEmailPublisher (def job , def recipient ) {
286
- job. with {
287
- publishers {
288
- extendedEmail(recipient, ' $DEFAULT_SUBJECT' , ' $DEFAULT_CONTENT' ) {
289
- trigger(' Aborted' , ' $PROJECT_DEFAULT_SUBJECT' , ' $PROJECT_DEFAULT_CONTENT' , null , true , true , true , true )
290
- trigger(' Failure' , ' $PROJECT_DEFAULT_SUBJECT' , ' $PROJECT_DEFAULT_CONTENT' , null , true , true , true , true )
291
- }
292
- }
293
- }
294
- }
295
-
296
285
// **************************
297
286
// Define the basic inner loop builds for PR and commit. This is basically just the set
298
287
// of coreclr builds over linux/osx/freebsd/windows and debug/release/checked. In addition, the windows
@@ -328,7 +317,8 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
328
317
case ' arm64' :
329
318
if (os == ' Windows_NT' ) {
330
319
Utilities . addGithubPushTrigger(job)
331
- addEmailPublisher(job,
' [email protected] ' )
320
+ // TODO: Add once external email sending is available again
321
+ // addEmailPublisher(job, '[email protected] ')
332
322
}
333
323
break
334
324
default :
@@ -385,7 +375,8 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
385
375
else if (architecture == ' arm64' ) {
386
376
if (os == ' Windows_NT' ) {
387
377
Utilities . addPeriodicTrigger(job, ' H H/12 * * *' )
388
- addEmailPublisher(job,
' [email protected] ' )
378
+ // TODO: Add once external email sending is available again
379
+ // addEmailPublisher(job, '[email protected] ')
389
380
}
390
381
}
391
382
}
@@ -432,14 +423,16 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
432
423
assert configuration == ' Release'
433
424
assert architecture == ' x64'
434
425
Utilities . addPeriodicTrigger(job, ' @daily' )
435
- addEmailPublisher(job,
' [email protected] ' )
426
+ // TODO: Add once external email sending is available again
427
+ // addEmailPublisher(job, '[email protected] ')
436
428
break
437
429
case ' gcsimulator' :
438
430
assert (os == ' Ubuntu' || os == ' Windows_NT' || os == ' OSX' )
439
431
assert configuration == ' Release'
440
432
assert architecture == ' x64'
441
433
Utilities . addPeriodicTrigger(job, ' H H * * 3,6' ) // some time every Wednesday and Saturday
442
- addEmailPublisher(job,
' [email protected] ' )
434
+ // TODO: Add once external email sending is available again
435
+ // addEmailPublisher(job, '[email protected] ')
443
436
break
444
437
case ' ilrt' :
445
438
assert ! (os in bidailyCrossList)
@@ -505,7 +498,8 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
505
498
if (architecture == ' arm64' ) {
506
499
assert (os == ' Windows_NT' )
507
500
Utilities . addPeriodicTrigger(job, ' @daily' )
508
- addEmailPublisher(job,
' [email protected] ' )
501
+ // TODO: Add once external email sending is available again
502
+ // addEmailPublisher(job, '[email protected] ')
509
503
}
510
504
else {
511
505
Utilities . addPeriodicTrigger(job, ' @weekly' )
@@ -526,6 +520,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
526
520
assert (os == ' Windows_NT' )
527
521
// TODO: Enable a periodic trigger after tests are updated.
528
522
// Utilities.addPeriodicTrigger(job, '@daily')
523
+ // TODO: Add once external email sending is available again
529
524
// addEmailPublisher(job, '[email protected] ')
530
525
}
531
526
else {
@@ -2499,7 +2494,8 @@ combinedScenarios.each { scenario ->
2499
2494
if (scenario == ' coverage' ) {
2500
2495
// Publish coverage reports
2501
2496
Utilities . addHtmlPublisher(newJob, ' ${WORKSPACE}/coverage/Coverage/reports' , ' Code Coverage Report' , ' coreclr.html' )
2502
- addEmailPublisher(newJob,
' [email protected] ' )
2497
+ // TODO: Add once external email sending is available again
2498
+ // addEmailPublisher(newJob, '[email protected] ')
2503
2499
}
2504
2500
2505
2501
// Experimental: If on Ubuntu 14.04, then attempt to pull in crash dump links
0 commit comments