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

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

Issue 305343003: Enabled new RietveldPollerWithCache on tryserver.chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Only tryserver.chromium Created 6 years, 6 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 | 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 # 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 import os 10 import os
(...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after
2224 pools=pools)) 2224 pools=pools))
2225 2225
2226 if ActiveMaster.is_production_host: 2226 if ActiveMaster.is_production_host:
2227 c['schedulers'].append(TryJobRietveld( 2227 c['schedulers'].append(TryJobRietveld(
2228 name='try_job_rietveld', 2228 name='try_job_rietveld',
2229 last_good_urls=last_good_urls, 2229 last_good_urls=last_good_urls,
2230 code_review_sites=code_review_sites, 2230 code_review_sites=code_review_sites,
2231 pools=pools, 2231 pools=pools,
2232 project='chrome', 2232 project='chrome',
2233 filter_master=True, 2233 filter_master=True,
2234 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json'))) 2234 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json'),
2235 cache_processed_jobs=True))
2235 2236
2236 if LISTEN_TO_SVN: 2237 if LISTEN_TO_SVN:
2237 c['schedulers'].append(TryJobSubversion( 2238 c['schedulers'].append(TryJobSubversion(
2238 name='try_job_svn', 2239 name='try_job_svn',
2239 svn_url=ActiveMaster.svn_url, 2240 svn_url=ActiveMaster.svn_url,
2240 last_good_urls=last_good_urls, 2241 last_good_urls=last_good_urls,
2241 code_review_sites=code_review_sites, 2242 code_review_sites=code_review_sites,
2242 pools=pools)) 2243 pools=pools))
2243 2244
2244 # Triggerable schedulers for Android Builder. 2245 # Triggerable schedulers for Android Builder.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 # base.make_stop_form = hack_stop(base.make_stop_form) 2357 # base.make_stop_form = hack_stop(base.make_stop_form)
2357 2358
2358 2359
2359 ####### PROJECT IDENTITY 2360 ####### PROJECT IDENTITY
2360 2361
2361 # The 'projectURL' string will be used to provide a link 2362 # The 'projectURL' string will be used to provide a link
2362 # from buildbot HTML pages to your project's home page. 2363 # from buildbot HTML pages to your project's home page.
2363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 2364 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
2364 2365
2365 # vi: set ts=4 sts=2 sw=2 et: 2366 # vi: set ts=4 sts=2 sw=2 et:
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