OLD | NEW |
---|---|
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2011 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 # These modules come from scripts, which must be in the PYTHONPATH. | 10 # These modules come from scripts, which must be in the PYTHONPATH. |
11 from master import master_utils | 11 from master import master_utils |
12 from master import slaves_list | 12 from master import slaves_list |
13 from master import try_job_status_update | 13 from master import try_job_status_update |
14 from master.builders_pools import BuildersPools | 14 from master.builders_pools import BuildersPools |
15 from master.factory import chromium_factory, chromeos_factory | 15 from master.factory import chromium_factory, chromeos_factory |
16 from master.try_job_http import TryJobHTTP | 16 from master.try_job_http import TryJobHTTP |
17 from master.try_job_svn import TryJobSubversion | 17 from master.try_job_svn import TryJobSubversion |
18 | 18 |
19 import config | 19 import config |
20 | 20 |
21 ActiveMaster = config.Master.TryServer | 21 ActiveMaster = config.Master.TryServer |
22 | 22 |
23 | 23 |
24 MAIL_NOTIFIER = True | 24 MAIL_NOTIFIER = True |
25 UPDATE_CODEREVIEW = ActiveMaster.is_production_host | 25 UPDATE_CODEREVIEW = ActiveMaster.is_production_host |
26 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host | 26 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host |
27 | 27 |
28 ActiveMaster.svn_url = 'svn://pbg.wat/chrome-try' | |
29 LISTEN_TO_SVN = True | |
Peter Mayo
2011/12/07 16:38:00
Testing: remove
Peter Mayo
2011/12/09 21:29:08
Done.
M-A Ruel
2011/12/09 21:50:29
Trick:
Create a git branch "testing"
Create a new
| |
30 | |
28 # This is the dictionary that the buildmaster pays attention to. We also use | 31 # This is the dictionary that the buildmaster pays attention to. We also use |
29 # a shorter alias to save typing. | 32 # a shorter alias to save typing. |
30 c = BuildmasterConfig = {} | 33 c = BuildmasterConfig = {} |
31 | 34 |
32 | 35 |
33 ####### CHANGESOURCES | 36 ####### CHANGESOURCES |
34 | 37 |
35 c['change_source'] = [] | 38 c['change_source'] = [] |
36 | 39 |
37 | 40 |
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1107 ####### PROJECT IDENTITY | 1110 ####### PROJECT IDENTITY |
1108 | 1111 |
1109 # The 'projectURL' string will be used to provide a link | 1112 # The 'projectURL' string will be used to provide a link |
1110 # from buildbot HTML pages to your project's home page. | 1113 # from buildbot HTML pages to your project's home page. |
1111 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1114 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
1112 | 1115 |
1113 # Buildbot master url: | 1116 # Buildbot master url: |
1114 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1117 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
1115 | 1118 |
1116 # vi: set ts=4 sts=2 sw=2 et: | 1119 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |