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 import locks | 6 from buildbot import locks |
7 from buildbot.changes import svnpoller | 7 from buildbot.changes import svnpoller |
8 from buildbot.scheduler import Dependent | 8 from buildbot.scheduler import Dependent |
9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
10 from buildbot.scheduler import Periodic | 10 from buildbot.scheduler import Periodic |
11 from buildbot.scheduler import Scheduler | 11 from buildbot.scheduler import Scheduler |
12 from buildbot.scheduler import Triggerable | 12 from buildbot.scheduler import Triggerable |
13 from buildbot.status.mail import MailNotifier | 13 from buildbot.status.mail import MailNotifier |
14 | 14 |
15 # These modules come from scripts/master, which must be in the PYTHONPATH. | 15 # These modules come from scripts/master, which must be in the PYTHONPATH. |
16 from master import build_utils | 16 from master import build_utils |
17 from master import chromium_notifier | 17 from master import chromium_notifier |
18 from master import failures_notifier | 18 from master import failures_notifier |
19 from master import master_config | 19 from master import master_config |
20 from master import master_utils | 20 from master import master_utils |
21 from master import slaves_list | 21 from master import slaves_list |
22 | 22 |
23 from master.factory import chromeos_factory | 23 from master.factory import chromeos_factory |
24 from master.factory import chromium_factory | 24 from master.factory import chromium_factory |
25 | 25 |
26 # These modules come from scripts/common, which must be in the PYTHONPATH. | 26 # These modules come from scripts/common, which must be in the PYTHONPATH. |
27 import config | 27 import config |
| 28 import master_site_config |
28 | 29 |
29 import master_gitzip_cfg | 30 import master_gitzip_cfg |
30 import master_win_asan_cfg | 31 import master_win_asan_cfg |
31 | 32 |
32 ActiveMaster = config.Master.ChromiumFYI | 33 ActiveMaster = master_site_config.ChromiumFYI |
33 | 34 |
34 CODESEARCH_NOTIFIER = True | 35 CODESEARCH_NOTIFIER = True |
35 DRMEMORY_NOTIFIER = True | 36 DRMEMORY_NOTIFIER = True |
36 STATUS_PUSH = False | 37 STATUS_PUSH = False |
37 | 38 |
38 # This is the dictionary that the buildmaster pays attention to. We also use | 39 # This is the dictionary that the buildmaster pays attention to. We also use |
39 # a shorter alias to save typing. | 40 # a shorter alias to save typing. |
40 c = BuildmasterConfig = {} | 41 c = BuildmasterConfig = {} |
41 | 42 |
42 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) | 43 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) |
(...skipping 2195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2238 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2239 subject='goma canary buildbot %(result)s in %(projectName)s ' |
2239 'on %(builder)s', | 2240 'on %(builder)s', |
2240 extraRecipients=['goma+alert@google.com'], | 2241 extraRecipients=['goma+alert@google.com'], |
2241 sendToInterestedUsers=False)) | 2242 sendToInterestedUsers=False)) |
2242 | 2243 |
2243 | 2244 |
2244 ####### PROJECT IDENTITY | 2245 ####### PROJECT IDENTITY |
2245 | 2246 |
2246 # Buildbot master url: | 2247 # Buildbot master url: |
2247 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 2248 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
OLD | NEW |