| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from buildbot import locks | 5 from buildbot import locks |
| 6 from buildbot.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 } | 1318 } |
| 1319 c['status'].append(failures_notifier.FailuresNotifier( | 1319 c['status'].append(failures_notifier.FailuresNotifier( |
| 1320 fromaddr=ActiveMaster.from_address, | 1320 fromaddr=ActiveMaster.from_address, |
| 1321 categories_steps=categories_steps, | 1321 categories_steps=categories_steps, |
| 1322 exclusions={}, | 1322 exclusions={}, |
| 1323 relayhost=config.Master.smtp, | 1323 relayhost=config.Master.smtp, |
| 1324 status_header='New DrMemory failure on "%(builder)s":\n%(steps)s', | 1324 status_header='New DrMemory failure on "%(builder)s":\n%(steps)s', |
| 1325 subject='drmemory buildbot %(result)s in %(projectName)s on ' | 1325 subject='drmemory buildbot %(result)s in %(projectName)s on ' |
| 1326 '%(builder)s, revision %(revision)s', | 1326 '%(builder)s, revision %(revision)s', |
| 1327 sendToInterestedUsers=False, # don't send e-mails to the committers. | 1327 sendToInterestedUsers=False, # don't send e-mails to the committers. |
| 1328 extraRecipients=['drmemory-team+fyibots@google.com'], | 1328 extraRecipients=['timurrrr+drmfailure@google.com'], |
| 1329 lookup=master_utils.FilterDomain(), | 1329 lookup=master_utils.FilterDomain(), |
| 1330 forgiving_steps=[], | 1330 forgiving_steps=[], |
| 1331 use_getname=True)) | 1331 use_getname=True)) |
| 1332 | 1332 |
| 1333 | 1333 |
| 1334 ####### PROJECT IDENTITY | 1334 ####### PROJECT IDENTITY |
| 1335 | 1335 |
| 1336 # Buildbot master url: | 1336 # Buildbot master url: |
| 1337 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 1337 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |