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

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

Issue 308123009: Revert of Enabled new RietveldPollerWithCache on tryserver.chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: 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))
2236 2235
2237 if LISTEN_TO_SVN: 2236 if LISTEN_TO_SVN:
2238 c['schedulers'].append(TryJobSubversion( 2237 c['schedulers'].append(TryJobSubversion(
2239 name='try_job_svn', 2238 name='try_job_svn',
2240 svn_url=ActiveMaster.svn_url, 2239 svn_url=ActiveMaster.svn_url,
2241 last_good_urls=last_good_urls, 2240 last_good_urls=last_good_urls,
2242 code_review_sites=code_review_sites, 2241 code_review_sites=code_review_sites,
2243 pools=pools)) 2242 pools=pools))
2244 2243
2245 # Triggerable schedulers for Android Builder. 2244 # Triggerable schedulers for Android Builder.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
2357 # base.make_stop_form = hack_stop(base.make_stop_form) 2356 # base.make_stop_form = hack_stop(base.make_stop_form)
2358 2357
2359 2358
2360 ####### PROJECT IDENTITY 2359 ####### PROJECT IDENTITY
2361 2360
2362 # The 'projectURL' string will be used to provide a link 2361 # The 'projectURL' string will be used to provide a link
2363 # from buildbot HTML pages to your project's home page. 2362 # from buildbot HTML pages to your project's home page.
2364 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 2363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
2365 2364
2366 # vi: set ts=4 sts=2 sw=2 et: 2365 # 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