OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
7 | 7 |
8 # This is the buildmaster config file for the 'experimental' bot. It must | 8 # This is the buildmaster config file for the 'experimental' bot. It must |
9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
11 # 'mktap buildbot master'). | 11 # 'mktap buildbot master'). |
12 | 12 |
13 # It has one job: define a dictionary named BuildmasterConfig. This | 13 # It has one job: define a dictionary named BuildmasterConfig. This |
14 # dictionary has a variety of keys to control different aspects of the | 14 # dictionary has a variety of keys to control different aspects of the |
15 # buildmaster. They are documented in docs/config.xhtml . | 15 # buildmaster. They are documented in docs/config.xhtml . |
16 | 16 |
17 from buildbot.changes import svnpoller | 17 from buildbot.changes import svnpoller |
18 from buildbot.scheduler import Scheduler | 18 from buildbot.scheduler import Scheduler |
19 | 19 |
20 from master import build_utils | 20 from master import build_utils |
21 from master import chromium_step | 21 from master import chromium_step |
22 from master import master_utils | 22 from master import master_utils |
23 from master import slaves_list | 23 from master import slaves_list |
24 from master.factory import chromium_factory | 24 from master.factory import chromium_factory |
25 | 25 |
26 import config | 26 import config |
| 27 import master_site_config |
27 | 28 |
28 ActiveMaster = config.Master.Experimental | 29 ActiveMaster = master_site_config.Experimental |
29 | 30 |
30 MAIL_NOTIFIER = False | 31 MAIL_NOTIFIER = False |
31 PB_LISTENER = False | 32 PB_LISTENER = False |
32 SVN_POLLER = False | 33 SVN_POLLER = False |
33 STATUS_PUSH = False | 34 STATUS_PUSH = False |
34 | 35 |
35 | 36 |
36 # This is the dictionary that the buildmaster pays attention to. We also use | 37 # This is the dictionary that the buildmaster pays attention to. We also use |
37 # a shorter alias to save typing. | 38 # a shorter alias to save typing. |
38 c = BuildmasterConfig = {} | 39 c = BuildmasterConfig = {} |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 c['projectName'] = ActiveMaster.project_name | 202 c['projectName'] = ActiveMaster.project_name |
202 c['projectURL'] = config.Master.project_url | 203 c['projectURL'] = config.Master.project_url |
203 | 204 |
204 # the 'buildbotURL' string should point to the location where the buildbot's | 205 # the 'buildbotURL' string should point to the location where the buildbot's |
205 # internal web server (usually the html.Waterfall page) is visible. This | 206 # internal web server (usually the html.Waterfall page) is visible. This |
206 # typically uses the port number set in the Waterfall 'status' entry, but | 207 # typically uses the port number set in the Waterfall 'status' entry, but |
207 # with an externally-visible host name which the buildbot cannot figure out | 208 # with an externally-visible host name which the buildbot cannot figure out |
208 # without some help. | 209 # without some help. |
209 | 210 |
210 c['buildbotURL'] = 'http://localhost:8010/' | 211 c['buildbotURL'] = 'http://localhost:8010/' |
OLD | NEW |