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

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

Issue 309763004: Revert of Enabled new RietveldPollerWithCache on remaining masters (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') | 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 (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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
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'), 664 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json')))
665 cache_processed_jobs=True))
666 665
667 for mode in ['opt_panda', 'perf_panda']: 666 for mode in ['opt_panda', 'perf_panda']:
668 s = Triggerable( 667 s = Triggerable(
669 name='arm_%s_hw_tests' % mode, 668 name='arm_%s_hw_tests' % mode,
670 builderNames=['nacl-arm_hw_%s' % mode]) 669 builderNames=['nacl-arm_hw_%s' % mode])
671 c['schedulers'].append(s) 670 c['schedulers'].append(s)
672 671
673 672
674 ####### STATUS TARGETS 673 ####### STATUS TARGETS
675 674
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 c['eventHorizon'] = 100 717 c['eventHorizon'] = 100
719 # Must be at least 2x the number of on-going builds. 718 # Must be at least 2x the number of on-going builds.
720 c['buildCacheSize'] = 100 719 c['buildCacheSize'] = 100
721 720
722 721
723 ####### PROJECT IDENTITY 722 ####### PROJECT IDENTITY
724 723
725 # The 'projectURL' string will be used to provide a link 724 # The 'projectURL' string will be used to provide a link
726 # from buildbot HTML pages to your project's home page. 725 # from buildbot HTML pages to your project's home page.
727 c['projectURL'] = 'http://go/ChromeTryServer' 726 c['projectURL'] = 'http://go/ChromeTryServer'
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698