| OLD | NEW |
| 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 Loading... |
| 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)) |
| 665 | 666 |
| 666 for mode in ['opt_panda', 'perf_panda']: | 667 for mode in ['opt_panda', 'perf_panda']: |
| 667 s = Triggerable( | 668 s = Triggerable( |
| 668 name='arm_%s_hw_tests' % mode, | 669 name='arm_%s_hw_tests' % mode, |
| 669 builderNames=['nacl-arm_hw_%s' % mode]) | 670 builderNames=['nacl-arm_hw_%s' % mode]) |
| 670 c['schedulers'].append(s) | 671 c['schedulers'].append(s) |
| 671 | 672 |
| 672 | 673 |
| 673 ####### STATUS TARGETS | 674 ####### STATUS TARGETS |
| 674 | 675 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 c['eventHorizon'] = 100 | 718 c['eventHorizon'] = 100 |
| 718 # Must be at least 2x the number of on-going builds. | 719 # Must be at least 2x the number of on-going builds. |
| 719 c['buildCacheSize'] = 100 | 720 c['buildCacheSize'] = 100 |
| 720 | 721 |
| 721 | 722 |
| 722 ####### PROJECT IDENTITY | 723 ####### PROJECT IDENTITY |
| 723 | 724 |
| 724 # The 'projectURL' string will be used to provide a link | 725 # The 'projectURL' string will be used to provide a link |
| 725 # from buildbot HTML pages to your project's home page. | 726 # from buildbot HTML pages to your project's home page. |
| 726 c['projectURL'] = 'http://go/ChromeTryServer' | 727 c['projectURL'] = 'http://go/ChromeTryServer' |
| OLD | NEW |