OLD | NEW |
1 # vim: ft=python: | 1 # vim: ft=python: |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
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 |
11 from buildbot.scheduler import Triggerable | 11 from buildbot.scheduler import Triggerable |
12 from buildbot.status.mail import MailNotifier | 12 from buildbot.status.mail import MailNotifier |
13 | 13 |
14 # These modules come from scripts/master, which must be in the PYTHONPATH. | 14 # These modules come from scripts/master, which must be in the PYTHONPATH. |
15 from master import build_utils | 15 from master import build_utils |
16 from master import chromium_notifier | 16 from master import chromium_notifier |
17 from master import failures_notifier | 17 from master import failures_notifier |
18 from master import master_config | 18 from master import master_config |
19 from master import master_utils | 19 from master import master_utils |
20 from master import slaves_list | 20 from master import slaves_list |
21 | 21 |
22 from master.factory import chromeos_factory | 22 from master.factory import chromeos_factory |
23 from master.factory import chromium_factory | 23 from master.factory import chromium_factory |
24 | 24 |
25 # These modules come from scripts/common, which must be in the PYTHONPATH. | 25 # These modules come from scripts/common, which must be in the PYTHONPATH. |
26 import config | 26 import config |
| 27 import master_site_config |
27 | 28 |
28 import master_gitzip_cfg | 29 import master_gitzip_cfg |
29 import master_win_asan_cfg | 30 import master_win_asan_cfg |
30 | 31 |
31 ActiveMaster = config.Master.ChromiumFYI | 32 ActiveMaster = master_site_config.ChromiumFYI |
32 | 33 |
33 CODESEARCH_NOTIFIER = True | 34 CODESEARCH_NOTIFIER = True |
34 DRMEMORY_NOTIFIER = True | 35 DRMEMORY_NOTIFIER = True |
35 STATUS_PUSH = False | 36 STATUS_PUSH = False |
36 | 37 |
37 # This is the dictionary that the buildmaster pays attention to. We also use | 38 # This is the dictionary that the buildmaster pays attention to. We also use |
38 # a shorter alias to save typing. | 39 # a shorter alias to save typing. |
39 c = BuildmasterConfig = {} | 40 c = BuildmasterConfig = {} |
40 | 41 |
41 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) | 42 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) |
(...skipping 2261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2303 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2304 subject='goma canary buildbot %(result)s in %(projectName)s ' |
2304 'on %(builder)s', | 2305 'on %(builder)s', |
2305 extraRecipients=['goma+alert@google.com'], | 2306 extraRecipients=['goma+alert@google.com'], |
2306 sendToInterestedUsers=False)) | 2307 sendToInterestedUsers=False)) |
2307 | 2308 |
2308 | 2309 |
2309 ####### PROJECT IDENTITY | 2310 ####### PROJECT IDENTITY |
2310 | 2311 |
2311 # Buildbot master url: | 2312 # Buildbot master url: |
2312 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 2313 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
OLD | NEW |