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

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

Issue 14336002: Let Blink try jobs use a Blink-specific LKGR (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix bug # Created 7 years, 8 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 | « no previous file | scripts/master/try_job_base.py » ('j') | 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 # 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
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
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:
OLDNEW
« no previous file with comments | « no previous file | scripts/master/try_job_base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698