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

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

Issue 9169097: Add a custom SVNPoller implementation that adds " (CQ)" to author name for (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/build/
Patch Set: . Created 8 years, 11 months 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/svnpoller.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from buildbot import locks 5 from buildbot import locks
6 from buildbot.changes import svnpoller
7 from buildbot.scheduler import Dependent 6 from buildbot.scheduler import Dependent
8 from buildbot.scheduler import Nightly 7 from buildbot.scheduler import Nightly
9 from buildbot.scheduler import Periodic 8 from buildbot.scheduler import Periodic
10 from buildbot.scheduler import Scheduler 9 from buildbot.scheduler import Scheduler
11 from buildbot.scheduler import Triggerable 10 from buildbot.scheduler import Triggerable
12 11
13 # These modules come from scripts/master, which must be in the PYTHONPATH. 12 # These modules come from scripts/master, which must be in the PYTHONPATH.
14 from master import build_utils 13 from master import build_utils
15 from master import chromium_notifier 14 from master import chromium_notifier
16 from master import failures_notifier 15 from master import failures_notifier
17 from master import master_config 16 from master import master_config
18 from master import master_utils 17 from master import master_utils
19 from master import slaves_list 18 from master import slaves_list
19 from master import svnpoller
20 20
21 from master.factory import chromeos_factory 21 from master.factory import chromeos_factory
22 from master.factory import chromium_factory 22 from master.factory import chromium_factory
23 23
24 # These modules come from scripts/common, which must be in the PYTHONPATH. 24 # These modules come from scripts/common, which must be in the PYTHONPATH.
25 import config 25 import config
26 26
27 ActiveMaster = config.Master.ChromiumFYI 27 ActiveMaster = config.Master.ChromiumFYI
28 28
29 CODESEARCH_NOTIFIER = True 29 CODESEARCH_NOTIFIER = True
(...skipping 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 ], 1421 ],
1422 lookup=master_utils.FilterDomain(), 1422 lookup=master_utils.FilterDomain(),
1423 forgiving_steps=[], 1423 forgiving_steps=[],
1424 use_getname=True)) 1424 use_getname=True))
1425 1425
1426 1426
1427 ####### PROJECT IDENTITY 1427 ####### PROJECT IDENTITY
1428 1428
1429 # Buildbot master url: 1429 # Buildbot master url:
1430 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' 1430 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/'
OLDNEW
« no previous file with comments | « no previous file | scripts/master/svnpoller.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698