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

Side by Side Diff: masters/master.tryserver.chromium.linux/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
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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 295
296 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux', 296 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux',
297 extra_props={'runhooks': True}) 297 extra_props={'runhooks': True})
298 298
299 # These variable builders are used by Findit to identify culprit commits for 299 # These variable builders are used by Findit to identify culprit commits for
300 # compile or test failures on the main waterfall. They run on optional slaves 300 # compile or test failures on the main waterfall. They run on optional slaves
301 # and NOT CQ slaves. 301 # and NOT CQ slaves.
302 variable_builders = [ 302 variable_builders = [
303 { 303 {
304 'name': 'linux_chromium_variable', 304 'name': 'linux_chromium_variable',
305 'factory': baseFactory('findit/chromium/compile'), 305 'factory': m_remote_run('findit/chromium/compile'),
306 'slavebuilddir': 'linux', 306 'slavebuilddir': 'linux',
307 }, 307 },
308 { 308 {
309 'name': 'linux_chromium_variable_32', 309 'name': 'linux_chromium_variable_32',
310 'factory': baseFactory('findit/chromium/compile'), 310 'factory': m_remote_run('findit/chromium/compile'),
311 'slavebuilddir': 'linux_32', 311 'slavebuilddir': 'linux_32',
312 }, 312 },
313 { 313 {
314 'name': 'linux_chromium_variable_chrome', 314 'name': 'linux_chromium_variable_chrome',
315 'factory': baseFactory('findit/chromium/compile'), 315 'factory': m_remote_run('findit/chromium/compile'),
316 'slavebuilddir': 'linux_chrome', 316 'slavebuilddir': 'linux_chrome',
317 }, 317 },
318 { 318 {
319 'name': 'linux_chromium_variable_clobber', 319 'name': 'linux_chromium_variable_clobber',
320 'factory': baseFactory('findit/chromium/compile'), 320 'factory': m_remote_run('findit/chromium/compile'),
321 'slavebuilddir': 'linux_clobber', 321 'slavebuilddir': 'linux_clobber',
322 }, 322 },
323 { 323 {
324 'name': 'linux_chromium_variable_32_chrome', 324 'name': 'linux_chromium_variable_32_chrome',
325 'factory': baseFactory('findit/chromium/compile'), 325 'factory': m_remote_run('findit/chromium/compile'),
326 'slavebuilddir': 'linux_chrome_32', 326 'slavebuilddir': 'linux_chrome_32',
327 }, 327 },
328 { 328 {
329 'name': 'linux_chromium_variable_32_clobber', 329 'name': 'linux_chromium_variable_32_clobber',
330 'factory': baseFactory('findit/chromium/compile'), 330 'factory': m_remote_run('findit/chromium/compile'),
331 'slavebuilddir': 'linux_clobber_32', 331 'slavebuilddir': 'linux_clobber_32',
332 }, 332 },
333 { 333 {
334 'name': 'linux_chromium_asan_variable', 334 'name': 'linux_chromium_asan_variable',
335 'factory': baseFactory('findit/chromium/compile'), 335 'factory': m_remote_run('findit/chromium/compile'),
336 'slavebuilddir': 'linux_asan', 336 'slavebuilddir': 'linux_asan',
337 }, 337 },
338 { 338 {
339 'name': 'linux_chromium_chromeos_variable', 339 'name': 'linux_chromium_chromeos_variable',
340 'factory': baseFactory('findit/chromium/compile'), 340 'factory': m_remote_run('findit/chromium/compile'),
341 'slavebuilddir': 'linux_chromeos', 341 'slavebuilddir': 'linux_chromeos',
342 }, 342 },
343 { 343 {
344 'name': 'linux_chromium_chromeos_variable_chrome', 344 'name': 'linux_chromium_chromeos_variable_chrome',
345 'factory': baseFactory('findit/chromium/compile'), 345 'factory': m_remote_run('findit/chromium/compile'),
346 'slavebuilddir': 'linux_chromeos_chrome', 346 'slavebuilddir': 'linux_chromeos_chrome',
347 }, 347 },
348 { 348 {
349 'name': 'linux_chromium_chromeos_asan_variable', 349 'name': 'linux_chromium_chromeos_asan_variable',
350 'factory': baseFactory('findit/chromium/compile'), 350 'factory': m_remote_run('findit/chromium/compile'),
351 'slavebuilddir': 'linux_chromeos_asan', 351 'slavebuilddir': 'linux_chromeos_asan',
352 }, 352 },
353 { 353 {
354 'name': 'linux_chromium_gn_chromeos_variable', 354 'name': 'linux_chromium_gn_chromeos_variable',
355 'factory': baseFactory('findit/chromium/compile'), 355 'factory': m_remote_run('findit/chromium/compile'),
356 'slavebuilddir': 'linux_chromium_gn_chromeos', 356 'slavebuilddir': 'linux_chromium_gn_chromeos',
357 }, 357 },
358 { 358 {
359 'name': 'linux_chromium_blimp_variable', 359 'name': 'linux_chromium_blimp_variable',
360 'factory': baseFactory('findit/chromium/compile'), 360 'factory': m_remote_run('findit/chromium/compile'),
361 'slavebuilddir': 'linux_blimp', 361 'slavebuilddir': 'linux_blimp',
362 }, 362 },
363 { 363 {
364 'name': 'linux_chromium_cast_variable', 364 'name': 'linux_chromium_cast_variable',
365 'factory': baseFactory('findit/chromium/compile'), 365 'factory': m_remote_run('findit/chromium/compile'),
366 'slavebuilddir': 'linux_cast', 366 'slavebuilddir': 'linux_cast',
367 }, 367 },
368 { 368 {
369 'name': 'linux_chromium_webkit_variable', 369 'name': 'linux_chromium_webkit_variable',
370 'factory': baseFactory('findit/chromium/compile'), 370 'factory': m_remote_run('findit/chromium/compile'),
371 'slavebuilddir': 'linux_layout', 371 'slavebuilddir': 'linux_layout',
372 }, 372 },
373 { 373 {
374 'name': 'linux_chromium_webkit_asan_variable', 374 'name': 'linux_chromium_webkit_asan_variable',
375 'factory': baseFactory('findit/chromium/compile'), 375 'factory': m_remote_run('findit/chromium/compile'),
376 'slavebuilddir': 'linux_layout_asan', 376 'slavebuilddir': 'linux_layout_asan',
377 }, 377 },
378 { 378 {
379 'name': 'linux_chromium_webkit_leak_variable', 379 'name': 'linux_chromium_webkit_leak_variable',
380 'factory': baseFactory('findit/chromium/compile'), 380 'factory': m_remote_run('findit/chromium/compile'),
381 'slavebuilddir': 'linux_layout_leak', 381 'slavebuilddir': 'linux_layout_leak',
382 }, 382 },
383 { 383 {
384 'name': 'linux_chromium_webkit_msan_variable', 384 'name': 'linux_chromium_webkit_msan_variable',
385 'factory': baseFactory('findit/chromium/compile'), 385 'factory': m_remote_run('findit/chromium/compile'),
386 'slavebuilddir': 'linux_layout_msan', 386 'slavebuilddir': 'linux_layout_msan',
387 }, 387 },
388 { 388 {
389 'name': 'linux_chromiumos_full_variable', 389 'name': 'linux_chromiumos_full_variable',
390 'factory': baseFactory('findit/chromium/compile'), 390 'factory': m_remote_run('findit/chromium/compile'),
391 'slavebuilddir': 'linux_chromeos', 391 'slavebuilddir': 'linux_chromeos',
392 }, 392 },
393 ] 393 ]
394 394
395 for board in chromeos_boards: 395 for board in chromeos_boards:
396 variable_builders.append({ 396 variable_builders.append({
397 'name': 'chromeos_%s_variable' % (board,), 397 'name': 'chromeos_%s_variable' % (board,),
398 'factory': baseFactory('findit/chromium/compile'), 398 'factory': m_remote_run('findit/chromium/compile'),
399 'slavebuilddir': 'chromeos_%s' % (board,), 399 'slavebuilddir': 'chromeos_%s' % (board,),
400 }) 400 })
401 401
402 c['builders'] = [ 402 c['builders'] = [
403 b_chromium_presubmit, 403 b_chromium_presubmit,
404 b_codesearch_chromeos_builder, 404 b_codesearch_chromeos_builder,
405 b_codesearch_linux_builder, 405 b_codesearch_linux_builder,
406 b_linux_chromium_asan_rel_ng, 406 b_linux_chromium_asan_rel_ng,
407 b_linux_chromium_browser_side_navigation_rel, 407 b_linux_chromium_browser_side_navigation_rel,
408 b_linux_nacl_sdk, 408 b_linux_nacl_sdk,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 # base.make_stop_form = hack_stop(base.make_stop_form) 532 # base.make_stop_form = hack_stop(base.make_stop_form)
533 533
534 534
535 ####### PROJECT IDENTITY 535 ####### PROJECT IDENTITY
536 536
537 # The 'projectURL' string will be used to provide a link 537 # The 'projectURL' string will be used to provide a link
538 # from buildbot HTML pages to your project's home page. 538 # from buildbot HTML pages to your project's home page.
539 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 539 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
540 540
541 # vi: set ts=4 sts=2 sw=2 et: 541 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.android/builders.pyl ('k') | masters/master.tryserver.chromium.mac/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698