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

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

Issue 330283006: New RietveldPollerWithCache is working stable. Removed old RietveldPoller and the flag to choose be… (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
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 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 code_review_sites=code_review_sites, 2223 code_review_sites=code_review_sites,
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'),
2235 cache_processed_jobs=True))
2236 2234
2237 if LISTEN_TO_SVN: 2235 if LISTEN_TO_SVN:
2238 c['schedulers'].append(TryJobSubversion( 2236 c['schedulers'].append(TryJobSubversion(
2239 name='try_job_svn', 2237 name='try_job_svn',
2240 svn_url=ActiveMaster.svn_url, 2238 svn_url=ActiveMaster.svn_url,
2241 last_good_urls=last_good_urls, 2239 last_good_urls=last_good_urls,
2242 code_review_sites=code_review_sites, 2240 code_review_sites=code_review_sites,
2243 pools=pools)) 2241 pools=pools))
2244 2242
2245 # Triggerable schedulers for Android Builder. 2243 # 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) 2355 # base.make_stop_form = hack_stop(base.make_stop_form)
2358 2356
2359 2357
2360 ####### PROJECT IDENTITY 2358 ####### PROJECT IDENTITY
2361 2359
2362 # The 'projectURL' string will be used to provide a link 2360 # The 'projectURL' string will be used to provide a link
2363 # from buildbot HTML pages to your project's home page. 2361 # from buildbot HTML pages to your project's home page.
2364 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 2362 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
2365 2363
2366 # vi: set ts=4 sts=2 sw=2 et: 2364 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.gpu/master.cfg ('k') | masters/master.tryserver.nacl/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698