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

Side by Side Diff: masters/master.tryserver.nacl/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
« no previous file with comments | « masters/master.tryserver.chromium/master.cfg ('k') | masters/master.tryserver.v8/master.cfg » ('j') | 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 (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 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 # READ THIS: 8 # READ THIS:
9 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure 9 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure
10 10
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 svn_url=ActiveMaster.svn_url, 653 svn_url=ActiveMaster.svn_url,
654 code_review_sites=code_review_sites, 654 code_review_sites=code_review_sites,
655 pools=pools)) 655 pools=pools))
656 656
657 if LISTEN_TO_RIETVELD: 657 if LISTEN_TO_RIETVELD:
658 c['schedulers'].append(TryJobRietveld( 658 c['schedulers'].append(TryJobRietveld(
659 name='try_job_rietveld', 659 name='try_job_rietveld',
660 pools=pools, 660 pools=pools,
661 code_review_sites=code_review_sites, 661 code_review_sites=code_review_sites,
662 project='nacl', 662 project='nacl',
663 filter_master=True, 663 filter_master=True))
664 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json'),
665 cache_processed_jobs=True))
666 664
667 for mode in ['opt_panda', 'perf_panda']: 665 for mode in ['opt_panda', 'perf_panda']:
668 s = Triggerable( 666 s = Triggerable(
669 name='arm_%s_hw_tests' % mode, 667 name='arm_%s_hw_tests' % mode,
670 builderNames=['nacl-arm_hw_%s' % mode]) 668 builderNames=['nacl-arm_hw_%s' % mode])
671 c['schedulers'].append(s) 669 c['schedulers'].append(s)
672 670
673 671
674 ####### STATUS TARGETS 672 ####### STATUS TARGETS
675 673
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 c['eventHorizon'] = 100 716 c['eventHorizon'] = 100
719 # Must be at least 2x the number of on-going builds. 717 # Must be at least 2x the number of on-going builds.
720 c['buildCacheSize'] = 100 718 c['buildCacheSize'] = 100
721 719
722 720
723 ####### PROJECT IDENTITY 721 ####### PROJECT IDENTITY
724 722
725 # The 'projectURL' string will be used to provide a link 723 # The 'projectURL' string will be used to provide a link
726 # from buildbot HTML pages to your project's home page. 724 # from buildbot HTML pages to your project's home page.
727 c['projectURL'] = 'http://go/ChromeTryServer' 725 c['projectURL'] = 'http://go/ChromeTryServer'
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium/master.cfg ('k') | masters/master.tryserver.v8/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698