taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 8c72cbdaabd59a5ffcb2ffbb47283d4809f907e2
parent 80a9cf9643fb9e290c7ddc4a16f3f2812e55eafb
Author: Devan Carpenter <devan@taler.net>
Date:   Thu,  7 Sep 2023 07:21:11 -0400

buildbot: disable email notifications

during refactor email is spamming people. we also need to change the
email settings to be more particular about which users it emails for a
given notification. disable for now.

Diffstat:
Mbuildbot/master.cfg | 32++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -1237,22 +1237,22 @@ SERVICES.append(reporters.IRC( } )) -SERVICES.append(reporters.MailNotifier( - fromaddr="testbuild@taler.net", - # notify from pass to fail, and viceversa. - generators=[BuildStatusGenerator( - mode=('change','problem','failing','exception',), - builders=EMAIL_ALERTS, - message_formatter=reporters.MessageFormatter( - template_type='plain', - wantSteps=True, - wantLogs=True - ), - add_logs=True, - )], - sendToInterestedUsers=False, - extraRecipients=["buildfailures@taler.net"] -)) +#SERVICES.append(reporters.MailNotifier( +# fromaddr="testbuild@taler.net", +# # notify from pass to fail, and viceversa. +# generators=[BuildStatusGenerator( +# mode=('change','problem','failing','exception',), +# builders=EMAIL_ALERTS, +# message_formatter=reporters.MessageFormatter( +# template_type='plain', +# wantSteps=True, +# wantLogs=True +# ), +# add_logs=True, +# )], +# sendToInterestedUsers=False, +# extraRecipients=["buildfailures@taler.net"] +#)) ############# GENERAL PURPOSE SCHEDULERS ##########################