[PATCH] D112023: [zorg] Add email notifiers for my builders.
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 22 10:56:23 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rZORG60ea85a8a4b6: [zorg] Add email notifiers for Polly/CUDA OpenMP Offload/Flang builders. (authored by Meinersbur).
Repository:
rZORG LLVM Github Zorg
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112023/new/
https://reviews.llvm.org/D112023
Files:
buildbot/osuosl/master/config/status.py
Index: buildbot/osuosl/master/config/status.py
===================================================================
--- buildbot/osuosl/master/config/status.py
+++ buildbot/osuosl/master/config/status.py
@@ -280,6 +280,36 @@
subject = "Build Failure: %(builder)s",
mode = "failing",
builders = ["openmp-offload-amdgpu-project","openmp-offload-amdgpu-runtime"]),
+ reporters.MailNotifier(
+ fromaddr="llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = False,
+ extraRecipients=["flangbuilder at meinersbur.de"],
+ subject = "Build Failure (flang): %(builder)s",
+ mode = "failing",
+ builders = ["flang-x86_64-windows"]),
+ reporters.MailNotifier(
+ fromaddr="llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = False,
+ extraRecipients=["offloadbuilder at meinersbur.de"],
+ subject = "Build Failure (offload): %(builder)s",
+ mode = "failing",
+ builders = ["openmp-offload-cuda-project","openmp-offload-cuda-runtime"]),
+ reporters.MailNotifier(
+ fromaddr="llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = False,
+ extraRecipients=["pollybuilder at meinersbur.de"],
+ subject = "Build Failure (polly): %(builder)s",
+ mode = "failing",
+ builders = [
+ "polly-x86_64-linux",
+ "polly-x86_64-linux-noassert",
+ "polly-x86_64-linux-plugin",
+ "polly-x86_64-linux-shared",
+ "polly-x86_64-linux-shared-plugin",
+ "polly-x86_64-linux-shlib",
+ "polly-x86_64-linux-shlib-plugin",
+ "polly-sphinx-docs",
+ ]),
]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112023.381602.patch
Type: text/x-patch
Size: 1719 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211022/9fca8e5c/attachment.bin>
More information about the llvm-commits
mailing list