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

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

Issue 2230453002: tryserver.chromium.{android,linux,mac,win}: convert findit builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 | « masters/master.tryserver.chromium.mac/master.cfg ('k') | 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 # 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'name': 'win_nacl_sdk_build', 190 'name': 'win_nacl_sdk_build',
191 'factory': baseFactory('nacl/sdk_build'), 191 'factory': baseFactory('nacl/sdk_build'),
192 } 192 }
193 193
194 # These variable builders are used by Findit to identify culprit commits for 194 # These variable builders are used by Findit to identify culprit commits for
195 # compile or test failures on the main waterfall. They run on optional slaves 195 # compile or test failures on the main waterfall. They run on optional slaves
196 # and NOT CQ slaves. 196 # and NOT CQ slaves.
197 variable_builders = [ 197 variable_builders = [
198 { 198 {
199 'name': 'win_chromium_variable', 199 'name': 'win_chromium_variable',
200 'factory': baseFactory('findit/chromium/compile'), 200 'factory': m_remote_run('findit/chromium/compile'),
201 'slavebuilddir': 'win' 201 'slavebuilddir': 'win'
202 }, 202 },
203 { 203 {
204 'name': 'win_chromium_variable_gn', 204 'name': 'win_chromium_variable_gn',
205 'factory': baseFactory('findit/chromium/compile'), 205 'factory': m_remote_run('findit/chromium/compile'),
206 'slavebuilddir': 'win_gn' 206 'slavebuilddir': 'win_gn'
207 }, 207 },
208 { 208 {
209 'name': 'win_chromium_variable_archive', 209 'name': 'win_chromium_variable_archive',
210 'factory': baseFactory('findit/chromium/compile'), 210 'factory': m_remote_run('findit/chromium/compile'),
211 'slavebuilddir': 'win_archive' 211 'slavebuilddir': 'win_archive'
212 }, 212 },
213 { 213 {
214 'name': 'win_chromium_variable_chrome', 214 'name': 'win_chromium_variable_chrome',
215 'factory': baseFactory('findit/chromium/compile'), 215 'factory': m_remote_run('findit/chromium/compile'),
216 'slavebuilddir': 'win_chrome' 216 'slavebuilddir': 'win_chrome'
217 }, 217 },
218 { 218 {
219 'name': 'win_chromium_variable_clang', 219 'name': 'win_chromium_variable_clang',
220 'factory': baseFactory('findit/chromium/compile'), 220 'factory': m_remote_run('findit/chromium/compile'),
221 'slavebuilddir': 'win' 221 'slavebuilddir': 'win'
222 }, 222 },
223 { 223 {
224 'name': 'win_chromium_variable_webkit_layout', 224 'name': 'win_chromium_variable_webkit_layout',
225 'factory': baseFactory('findit/chromium/compile'), 225 'factory': m_remote_run('findit/chromium/compile'),
226 'slavebuilddir': 'win_layout' 226 'slavebuilddir': 'win_layout'
227 }, 227 },
228 { 228 {
229 'name': 'win_chromium_variable_webkit_builder', 229 'name': 'win_chromium_variable_webkit_builder',
230 'factory': baseFactory('findit/chromium/compile'), 230 'factory': m_remote_run('findit/chromium/compile'),
231 'slavebuilddir': 'win_webkit' 231 'slavebuilddir': 'win_webkit'
232 }, 232 },
233 { 233 {
234 'name': 'win_chromium_variable_webkit_win7_builder', 234 'name': 'win_chromium_variable_webkit_win7_builder',
235 'factory': baseFactory('findit/chromium/compile'), 235 'factory': m_remote_run('findit/chromium/compile'),
236 'slavebuilddir': 'win_webkit' 236 'slavebuilddir': 'win_webkit'
237 }, 237 },
238 { 238 {
239 'name': 'win_chromium_variable_webkit_win7_builder_x64', 239 'name': 'win_chromium_variable_webkit_win7_builder_x64',
240 'factory': baseFactory('findit/chromium/compile'), 240 'factory': m_remote_run('findit/chromium/compile'),
241 'slavebuilddir': 'win_webkit' 241 'slavebuilddir': 'win_webkit'
242 }, 242 },
243 { 243 {
244 'name': 'win_x64_chromium_variable_builder', 244 'name': 'win_x64_chromium_variable_builder',
245 'factory': baseFactory('findit/chromium/compile'), 245 'factory': m_remote_run('findit/chromium/compile'),
246 'slavebuilddir': 'win' 246 'slavebuilddir': 'win'
247 }, 247 },
248 ] 248 ]
249 249
250 c['builders'] = [ 250 c['builders'] = [
251 b_win_nacl_sdk, 251 b_win_nacl_sdk,
252 b_win_nacl_sdk_build, 252 b_win_nacl_sdk_build,
253 ] + chromium_builders + variable_builders 253 ] + chromium_builders + variable_builders
254 254
255 255
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 # base.make_stop_form = hack_stop(base.make_stop_form) 381 # base.make_stop_form = hack_stop(base.make_stop_form)
382 382
383 383
384 ####### PROJECT IDENTITY 384 ####### PROJECT IDENTITY
385 385
386 # The 'projectURL' string will be used to provide a link 386 # The 'projectURL' string will be used to provide a link
387 # from buildbot HTML pages to your project's home page. 387 # from buildbot HTML pages to your project's home page.
388 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 388 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
389 389
390 # vi: set ts=4 sts=2 sw=2 et: 390 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.mac/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698