taler-deployment

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

commit 53a2a5d33d2c5da2eb678d6b3f5c5114e7a3577b
parent f2e094feef36f0bfd270c2eedf25c90f14a4e872
Author: Devan Carpenter <devan@taler.net>
Date:   Tue,  9 Jan 2024 09:57:07 -0500

buildbot: enable default mailer with debug option

Diffstat:
Mbuildbot/master.cfg | 36+++++++++++++++++++-----------------
1 file changed, 19 insertions(+), 17 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -675,6 +675,7 @@ SERVICES.append(reporters.MailNotifier( generators=[docs_generator], sendToInterestedUsers=False, useTls=True, + dumpMailsToLog=True, extraRecipients=['linkcheck@taler.net'] )) @@ -1026,23 +1027,24 @@ BUILDER_LIST = map(lambda builder: builder.name, BUILDERS) ####### GENERAL PURPOSE BUILDBOT SERVICES ####################### -#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, -# useTls=True, -# extraRecipients=BUILDER_EMAIL_ADDRESSES -#)) +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, + useTls=True, + dumpMailsToLog=True, + extraRecipients=BUILDER_EMAIL_ADDRESSES +)) ############# GENERAL PURPOSE SCHEDULERS ##########################