OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # READ THIS: | 7 # READ THIS: |
8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
9 | 9 |
10 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
11 | 11 |
12 # These modules come from scripts, which must be in the PYTHONPATH. | 12 # These modules come from scripts, which must be in the PYTHONPATH. |
13 from master import master_config | 13 from master import master_config |
14 from master import master_utils | 14 from master import master_utils |
15 from master import slaves_list | 15 from master import slaves_list |
16 from master.builders_pools import BuildersPools | 16 from master.builders_pools import BuildersPools |
17 from master.factory import chromeos_factory | 17 from master.factory import chromeos_factory |
18 from master.factory import chromium_factory | 18 from master.factory import chromium_factory |
19 from master.factory import swarm_factory | 19 from master.factory import swarm_factory |
20 from master.try_job_http import TryJobHTTP | 20 from master.try_job_http import TryJobHTTP |
21 from master.try_job_rietveld import TryJobRietveld | 21 from master.try_job_rietveld import TryJobRietveld |
22 from master.try_job_svn import TryJobSubversion | 22 from master.try_job_svn import TryJobSubversion |
23 from master_site_config import TryServerLinux | |
24 | 23 |
25 import config | 24 import config |
| 25 import master_site_config |
26 | 26 |
27 ActiveMaster = TryServerLinux | 27 ActiveMaster = master_site_config.TryServerLinux |
28 | 28 |
29 | 29 |
30 MAIL_NOTIFIER = True | 30 MAIL_NOTIFIER = True |
31 UPDATE_CODEREVIEW = ActiveMaster.is_production_host | 31 UPDATE_CODEREVIEW = ActiveMaster.is_production_host |
32 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host | 32 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host |
33 | 33 |
34 # The list of builder that should use swarm for defaulttests. | 34 # The list of builder that should use swarm for defaulttests. |
35 SWARM_DEFAULT_TEST_BUILDERS = [ | 35 SWARM_DEFAULT_TEST_BUILDERS = [ |
36 'linux_rel', | 36 'linux_rel', |
37 ] | 37 ] |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 ####### PROJECT IDENTITY | 412 ####### PROJECT IDENTITY |
413 | 413 |
414 # The 'projectURL' string will be used to provide a link | 414 # The 'projectURL' string will be used to provide a link |
415 # from buildbot HTML pages to your project's home page. | 415 # from buildbot HTML pages to your project's home page. |
416 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 416 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
417 | 417 |
418 # Buildbot master url: | 418 # Buildbot master url: |
419 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium.linux/' | 419 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium.linux/' |
420 | 420 |
421 # vi: set ts=4 sts=2 sw=2 et: | 421 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |