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

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

Issue 2072823003: master.chromium.infra: Remove redundant tools/build builder (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: master.chromium.infra: fix recipe simulation 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 | no next file » | 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 ####### CHANGE SOURCES 54 ####### CHANGE SOURCES
55 55
56 INFRA_REPO_URL = 'https://chromium.googlesource.com/infra/infra' 56 INFRA_REPO_URL = 'https://chromium.googlesource.com/infra/infra'
57 LUCI_GO_REPO_URL = ( 57 LUCI_GO_REPO_URL = (
58 'https://chromium.googlesource.com/external/github.com/luci/luci-go') 58 'https://chromium.googlesource.com/external/github.com/luci/luci-go')
59 LUCI_GAE_REPO_URL = ( 59 LUCI_GAE_REPO_URL = (
60 'https://chromium.googlesource.com/external/github.com/luci/gae') 60 'https://chromium.googlesource.com/external/github.com/luci/gae')
61 RECIPES_PY_REPO_URL = ( 61 RECIPES_PY_REPO_URL = (
62 'https://chromium.googlesource.com/external/github.com/luci/recipes-py') 62 'https://chromium.googlesource.com/external/github.com/luci/recipes-py')
63 DEPOT_TOOLS_URL = 'https://chromium.googlesource.com/chromium/tools/depot_tools' 63 DEPOT_TOOLS_URL = 'https://chromium.googlesource.com/chromium/tools/depot_tools'
64 TOOLS_BUILD_URL = 'https://chromium.googlesource.com/chromium/tools/build'
65 CHROMIUM_REPO_URL = 'https://chromium.googlesource.com/chromium/src' 64 CHROMIUM_REPO_URL = 'https://chromium.googlesource.com/chromium/src'
66 65
67 c['change_source'].extend([ 66 c['change_source'].extend([
68 gitiles_poller.GitilesPoller(INFRA_REPO_URL), 67 gitiles_poller.GitilesPoller(INFRA_REPO_URL),
69 gitiles_poller.GitilesPoller(LUCI_GAE_REPO_URL, project='luci-gae'), 68 gitiles_poller.GitilesPoller(LUCI_GAE_REPO_URL, project='luci-gae'),
70 gitiles_poller.GitilesPoller(LUCI_GO_REPO_URL, branches=['master', 'go1']), 69 gitiles_poller.GitilesPoller(LUCI_GO_REPO_URL, branches=['master', 'go1']),
71 gitiles_poller.GitilesPoller(RECIPES_PY_REPO_URL), 70 gitiles_poller.GitilesPoller(RECIPES_PY_REPO_URL),
72 gitiles_poller.GitilesPoller(DEPOT_TOOLS_URL), 71 gitiles_poller.GitilesPoller(DEPOT_TOOLS_URL),
73 gitiles_poller.GitilesPoller(CHROMIUM_REPO_URL), 72 gitiles_poller.GitilesPoller(CHROMIUM_REPO_URL),
74 ]) 73 ])
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'category': 'zconda', 185 'category': 'zconda',
187 }, 186 },
188 { 187 {
189 'name': 'recipes-py-continuous', 188 'name': 'recipes-py-continuous',
190 'factory': m_remote_run('recipes_py_continuous'), 189 'factory': m_remote_run('recipes_py_continuous'),
191 'category': 'recipes-py', 190 'category': 'recipes-py',
192 }, 191 },
193 { 192 {
194 'name': 'recipe_engine-recipes-tests', 193 'name': 'recipe_engine-recipes-tests',
195 'factory': m_remote_run( 194 'factory': m_remote_run(
196 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, 195 'infra/recipe_simulation', repository=RECIPES_PY_REPO_URL,
197 properties={'repo_under_test': 'recipe_engine'}), 196 properties={'repo_under_test': 'recipe_engine'}),
198 'category': 'recipes-continuous', 197 'category': 'recipes-continuous',
199 }, 198 },
200 { 199 {
201 'name': 'build-recipes-tests',
martiniss 2016/06/17 03:05:52 https://build.chromium.org/p/chromium.tools.build/
202 'factory': m_remote_run(
203 'infra/recipe_simulation', repository=TOOLS_BUILD_URL,
204 properties={'repo_under_test': 'build'}),
205 'category': 'recipes-continuous',
206 },
207 {
208 'name': 'depot_tools-recipes-tests', 200 'name': 'depot_tools-recipes-tests',
209 'factory': m_remote_run( 201 'factory': m_remote_run(
210 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, 202 'infra/recipe_simulation', repository=DEPOT_TOOLS_URL,
211 properties={'repo_under_test': 'depot_tools'}), 203 properties={'repo_under_test': 'depot_tools'}),
212 'category': 'recipes-continuous', 204 'category': 'recipes-continuous',
213 }, 205 },
214 { 206 {
215 'name': 'depot_tools zip uploader', 207 'name': 'depot_tools zip uploader',
216 'slavebuilddir': 'depot_tools_uploader', 208 'slavebuilddir': 'depot_tools_uploader',
217 'factory': m_remote_run('depot_tools_builder'), 209 'factory': m_remote_run('depot_tools_builder'),
218 'category': 'depot_tools', 210 'category': 'depot_tools',
219 }, 211 },
220 212
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 relayhost=config.Master.smtp, 335 relayhost=config.Master.smtp,
344 extraRecipients=['swarming-eng@googlegroups.com'], 336 extraRecipients=['swarming-eng@googlegroups.com'],
345 ), 337 ),
346 ]) 338 ])
347 339
348 340
349 ####### PROJECT IDENTITY 341 ####### PROJECT IDENTITY
350 342
351 c['projectName'] = ActiveMaster.project_name 343 c['projectName'] = ActiveMaster.project_name
352 c['buildbotURL'] = ActiveMaster.buildbot_url 344 c['buildbotURL'] = ActiveMaster.buildbot_url
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698