+2017-02-16 Zack Weinberg <zackw@panix.com>
+
+ * scripts/build-many-glibcs.py (bot_build_mail): If the
+ bot_config does not contain all of the necessary email-
+ related settings, just print a warning and continue.
+
2017-02-16 Zack Weinberg <zackw@panix.com>
* crypt/md5.h: Test _LIBC with #if defined, not #if.
self.load_versions_json()
self.load_build_state_json()
self.status_log_list = []
+ self.email_warning = False
def get_script_text(self):
"""Return the text of this script."""
def bot_build_mail(self, action, build_time):
"""Send email with the results of a build."""
+ if not ('email-from' in self.bot_config and
+ 'email-server' in self.bot_config and
+ 'email-subject' in self.bot_config and
+ 'email-to' in self.bot_config):
+ if not self.email_warning:
+ print("Email not configured, not sending.")
+ self.email_warning = True
+ return
+
build_time = build_time.replace(microsecond=0)
subject = (self.bot_config['email-subject'] %
{'action': action,