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

Side by Side Diff: masters/master.client.v8.branches/master.cfg

Issue 138623004: V8 Buildbot: Fix experimental/a64 svn poller. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
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 3
4 # Copyright 2013 The Chromium Authors. All rights reserved. 4 # Copyright 2013 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 from buildbot.changes import svnpoller 8 from buildbot.changes import svnpoller
9 from buildbot.scheduler import Dependent 9 from buildbot.scheduler import Dependent
10 from buildbot.scheduler import Nightly 10 from buildbot.scheduler import Nightly
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 split_file=lambda p: ('branches/%s' % stable_branch, p), 64 split_file=lambda p: ('branches/%s' % stable_branch, p),
65 pollinterval=10, 65 pollinterval=10,
66 revlinktmpl=v8_rev) 66 revlinktmpl=v8_rev)
67 beta_poller = svnpoller.SVNPoller( 67 beta_poller = svnpoller.SVNPoller(
68 svnurl='%s/branches/%s' % (config.Master.v8_url, beta_branch), 68 svnurl='%s/branches/%s' % (config.Master.v8_url, beta_branch),
69 svnbin=chromium_utils.SVN_BIN, 69 svnbin=chromium_utils.SVN_BIN,
70 split_file=lambda p: ('branches/%s' % beta_branch, p), 70 split_file=lambda p: ('branches/%s' % beta_branch, p),
71 pollinterval=10, 71 pollinterval=10,
72 revlinktmpl=v8_rev) 72 revlinktmpl=v8_rev)
73 a64_poller = svnpoller.SVNPoller( 73 a64_poller = svnpoller.SVNPoller(
74 svnurl='%s/experimental/a64' % config.Master.v8_url, 74 svnurl='%s/branches/experimental/a64' % config.Master.v8_url,
75 svnbin=chromium_utils.SVN_BIN, 75 svnbin=chromium_utils.SVN_BIN,
76 split_file=lambda p: ('branches/experimental/a64', p), 76 split_file=lambda p: ('branches/experimental/a64', p),
77 pollinterval=10, 77 pollinterval=10,
78 revlinktmpl=v8_rev) 78 revlinktmpl=v8_rev)
79 79
80 c['change_source'] = [trunk_poller, stable_poller, beta_poller, a64_poller] 80 c['change_source'] = [trunk_poller, stable_poller, beta_poller, a64_poller]
81 81
82 82
83 ####### SCHEDULERS 83 ####### SCHEDULERS
84 84
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 lookup=master_utils.FilterDomain()) 656 lookup=master_utils.FilterDomain())
657 c['status'].append(mn) 657 c['status'].append(mn)
658 658
659 # Adjust the buildCaches to be 3x the number of slaves per builder. 659 # Adjust the buildCaches to be 3x the number of slaves per builder.
660 c['autoBuildCacheRatio'] = 3 660 c['autoBuildCacheRatio'] = 3
661 661
662 ####### PROJECT IDENTITY 662 ####### PROJECT IDENTITY
663 663
664 c['projectName'] = ActiveMaster.project_name 664 c['projectName'] = ActiveMaster.project_name
665 c['projectURL'] = config.Master.project_url 665 c['projectURL'] = config.Master.project_url
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698