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

Side by Side Diff: masters/master.chromium.infra.cron/master.cfg

Issue 2041743002: Add sync_submodules builders on master.chromium.infra. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Test expectations Created 4 years, 6 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
« no previous file with comments | « no previous file | masters/master.chromium.infra/master.cfg » ('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 3
4 # Copyright 2015 The Chromium Authors. All rights reserved. 4 # Copyright 2015 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 import config 8 import config
9 import master_site_config 9 import master_site_config
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 ####### DATABASE 49 ####### DATABASE
50 50
51 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) 51 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host)
52 52
53 53
54 ####### CHANGE SOURCES 54 ####### CHANGE SOURCES
55 INFRA_REPO_URL = 'https://chromium.googlesource.com/infra/infra' 55 INFRA_REPO_URL = 'https://chromium.googlesource.com/infra/infra'
56 56
57 c['change_source'].extend([ 57 c['change_source'].extend([
58 gitiles_poller.GitilesPoller( 58 gitiles_poller.GitilesPoller('https://chromium.googlesource.com/infra/infra'),
59 repo_url='https://chromium.googlesource.com/infra/infra',
60 project='infra',
61 branches=['master'],
62 pollInterval=10,
63 revlinktmpl=INFRA_REPO_URL+'/+/%s'),
64 ]) 59 ])
65 60
66 ####### BUILDERS 61 ####### BUILDERS
67 62
68 c['builders'].extend([ 63 c['builders'].extend([
69 { 64 {
70 'name': 'gnumbd', 65 'name': 'gnumbd',
71 'factory': f_annotations.BaseFactory( 66 'factory': f_annotations.BaseFactory(
72 'infra/gnumbd', 67 'infra/gnumbd',
73 {'target_repo': 'https://chromium.googlesource.com/chromium/src'}), 68 {'target_repo': 'https://chromium.googlesource.com/chromium/src'}),
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 sendToInterestedUsers=False, 256 sendToInterestedUsers=False,
262 extraRecipients=['blink-infra+alerts@google.com', 257 extraRecipients=['blink-infra+alerts@google.com',
263 'chrome-troopers+alerts@google.com'], 258 'chrome-troopers+alerts@google.com'],
264 ), 259 ),
265 ]) 260 ])
266 261
267 ####### PROJECT IDENTITY 262 ####### PROJECT IDENTITY
268 263
269 c['projectName'] = ActiveMaster.project_name 264 c['projectName'] = ActiveMaster.project_name
270 c['buildbotURL'] = ActiveMaster.buildbot_url 265 c['buildbotURL'] = ActiveMaster.buildbot_url
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.infra/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698