taler-deployment

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

commit 51a7b7f08609d62a9e1c3f682030f66363614bd2
parent 762837faac62169a265064e66de526fcad785a6a
Author: buckE <buckE@disroot.org>
Date:   Thu, 18 Jun 2020 05:57:37 +0000

added sphinx error reporter

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -1033,8 +1033,23 @@ brokenLinksEmailNotifier = reporters.MailNotifier( subject="Broken Links Found in www.taler.net" ) +sphinxErrorNotifier = reporters.MailNotifier( + fromaddr="bb@taler.net", + sendToInterestedUsers=False, + useTls=True, + # notify if sphinx exits with error (command line option in Makefile turns warnings into exit 1) + mode=('failing'), + builders=('doc-builder',), + extraRecipients=['buckE@taler.net'], + subject="sphinx-builder has warnings or errors. Check /home/docbuilder/warnings.log for warnings. Errors in main log(?)." +) -c["services"] = [IRC, EMAIL, brokenLinksEmailNotifier] +c["services"] = [ + IRC, + EMAIL, + brokenLinksEmailNotifier, + sphinxErrorNotifier +] ####### PROJECT IDENTITY