| 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 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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'))) | 2234 cachepath=os.path.join(os.getcwd(), 'try_job_rietveld.json'), |
| 2235 cache_processed_jobs=True)) |
| 2235 | 2236 |
| 2236 if LISTEN_TO_SVN: | 2237 if LISTEN_TO_SVN: |
| 2237 c['schedulers'].append(TryJobSubversion( | 2238 c['schedulers'].append(TryJobSubversion( |
| 2238 name='try_job_svn', | 2239 name='try_job_svn', |
| 2239 svn_url=ActiveMaster.svn_url, | 2240 svn_url=ActiveMaster.svn_url, |
| 2240 last_good_urls=last_good_urls, | 2241 last_good_urls=last_good_urls, |
| 2241 code_review_sites=code_review_sites, | 2242 code_review_sites=code_review_sites, |
| 2242 pools=pools)) | 2243 pools=pools)) |
| 2243 | 2244 |
| 2244 # Triggerable schedulers for Android Builder. | 2245 # Triggerable schedulers for Android Builder. |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2356 # base.make_stop_form = hack_stop(base.make_stop_form) | 2357 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 2357 | 2358 |
| 2358 | 2359 |
| 2359 ####### PROJECT IDENTITY | 2360 ####### PROJECT IDENTITY |
| 2360 | 2361 |
| 2361 # The 'projectURL' string will be used to provide a link | 2362 # The 'projectURL' string will be used to provide a link |
| 2362 # from buildbot HTML pages to your project's home page. | 2363 # from buildbot HTML pages to your project's home page. |
| 2363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2364 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2364 | 2365 |
| 2365 # vi: set ts=4 sts=2 sw=2 et: | 2366 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |