| OLD | NEW |
| 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 2239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2250 pools=pools)) | 2250 pools=pools)) |
| 2251 | 2251 |
| 2252 if ActiveMaster.is_production_host: | 2252 if ActiveMaster.is_production_host: |
| 2253 c['schedulers'].append(TryJobRietveld( | 2253 c['schedulers'].append(TryJobRietveld( |
| 2254 name='try_job_rietveld', | 2254 name='try_job_rietveld', |
| 2255 last_good_urls=last_good_urls, | 2255 last_good_urls=last_good_urls, |
| 2256 code_review_sites=code_review_sites, | 2256 code_review_sites=code_review_sites, |
| 2257 pools=pools, | 2257 pools=pools, |
| 2258 project='chrome', | 2258 project='chrome', |
| 2259 filter_master=True, | 2259 filter_master=True, |
| 2260 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json'))) | 2260 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json'), |
| 2261 cache_processed_jobs=True)) |
| 2261 | 2262 |
| 2262 if LISTEN_TO_SVN: | 2263 if LISTEN_TO_SVN: |
| 2263 c['schedulers'].append(TryJobSubversion( | 2264 c['schedulers'].append(TryJobSubversion( |
| 2264 name='try_job_svn', | 2265 name='try_job_svn', |
| 2265 svn_url=ActiveMaster.svn_url, | 2266 svn_url=ActiveMaster.svn_url, |
| 2266 last_good_urls=last_good_urls, | 2267 last_good_urls=last_good_urls, |
| 2267 code_review_sites=code_review_sites, | 2268 code_review_sites=code_review_sites, |
| 2268 pools=pools)) | 2269 pools=pools)) |
| 2269 | 2270 |
| 2270 # Triggerable schedulers for Android Builder. | 2271 # Triggerable schedulers for Android Builder. |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2382 # base.make_stop_form = hack_stop(base.make_stop_form) | 2383 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 2383 | 2384 |
| 2384 | 2385 |
| 2385 ####### PROJECT IDENTITY | 2386 ####### PROJECT IDENTITY |
| 2386 | 2387 |
| 2387 # The 'projectURL' string will be used to provide a link | 2388 # The 'projectURL' string will be used to provide a link |
| 2388 # from buildbot HTML pages to your project's home page. | 2389 # from buildbot HTML pages to your project's home page. |
| 2389 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2390 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2390 | 2391 |
| 2391 # vi: set ts=4 sts=2 sw=2 et: | 2392 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |