| 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 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
| (...skipping 1966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1977 # Make sure everything works together. | 1977 # Make sure everything works together. |
| 1978 master_utils.VerifySetup(c, slaves) | 1978 master_utils.VerifySetup(c, slaves) |
| 1979 | 1979 |
| 1980 | 1980 |
| 1981 ####### SCHEDULERS | 1981 ####### SCHEDULERS |
| 1982 | 1982 |
| 1983 # Configure the Schedulers; | 1983 # Configure the Schedulers; |
| 1984 # Main Tryscheduler for the try queue. groups is defined in the loop above. | 1984 # Main Tryscheduler for the try queue. groups is defined in the loop above. |
| 1985 c['schedulers'] = [] | 1985 c['schedulers'] = [] |
| 1986 | 1986 |
| 1987 last_good_urls = {'chrome': ActiveMaster.last_good_url} | 1987 last_good_urls = {'chrome': ActiveMaster.last_good_url, |
| 1988 'blink': ActiveMaster.last_good_blink_url} |
| 1988 code_review_sites = {'chrome': ActiveMaster.code_review_site} | 1989 code_review_sites = {'chrome': ActiveMaster.code_review_site} |
| 1989 | 1990 |
| 1990 c['schedulers'].append(TryJobHTTP( | 1991 c['schedulers'].append(TryJobHTTP( |
| 1991 name='try_job_http', | 1992 name='try_job_http', |
| 1992 port=ActiveMaster.try_job_port, | 1993 port=ActiveMaster.try_job_port, |
| 1993 last_good_urls=last_good_urls, | 1994 last_good_urls=last_good_urls, |
| 1994 code_review_sites=code_review_sites, | 1995 code_review_sites=code_review_sites, |
| 1995 pools=pools)) | 1996 pools=pools)) |
| 1996 | 1997 |
| 1997 if ActiveMaster.is_production_host: | 1998 if ActiveMaster.is_production_host: |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2100 ####### PROJECT IDENTITY | 2101 ####### PROJECT IDENTITY |
| 2101 | 2102 |
| 2102 # The 'projectURL' string will be used to provide a link | 2103 # The 'projectURL' string will be used to provide a link |
| 2103 # from buildbot HTML pages to your project's home page. | 2104 # from buildbot HTML pages to your project's home page. |
| 2104 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2105 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2105 | 2106 |
| 2106 # Buildbot master url: | 2107 # Buildbot master url: |
| 2107 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2108 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 2108 | 2109 |
| 2109 # vi: set ts=4 sts=2 sw=2 et: | 2110 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |