Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: masters/master.tryserver.chromium/master.cfg

Issue 8847005: Add decorations to bot names for modifying parts of try sets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/master/try_job_base.py » ('j') | scripts/master/try_job_base.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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:
OLDNEW
« no previous file with comments | « no previous file | scripts/master/try_job_base.py » ('j') | scripts/master/try_job_base.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698