| OLD | NEW |
| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 {'use_mirror': ActiveMaster.is_production_host or None}), | 237 {'use_mirror': ActiveMaster.is_production_host or None}), |
| 238 }] | 238 }] |
| 239 | 239 |
| 240 b_linux_site_isolation = { | 240 b_linux_site_isolation = { |
| 241 'name': 'linux_site_isolation', | 241 'name': 'linux_site_isolation', |
| 242 'factory': m_annotator.BaseFactory('chromium_trybot'), | 242 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 243 # Share build directory with compatible existing builders to save space. | 243 # Share build directory with compatible existing builders to save space. |
| 244 'slavebuilddir': 'linux', | 244 'slavebuilddir': 'linux', |
| 245 } | 245 } |
| 246 | 246 |
| 247 b_linux_valgrind = { | |
| 248 'name': 'linux_valgrind', | |
| 249 'factory': m_annotator.BaseFactory('chromium_trybot'), | |
| 250 # Share build directory with compatible existing builders to save space. | |
| 251 'slavebuilddir': 'linux', | |
| 252 } | |
| 253 | |
| 254 b_linux_chromium_asan_rel_ng = { | 247 b_linux_chromium_asan_rel_ng = { |
| 255 'name': 'linux_chromium_asan_rel_ng', | 248 'name': 'linux_chromium_asan_rel_ng', |
| 256 'factory': m_annotator.BaseFactory( | 249 'factory': m_annotator.BaseFactory( |
| 257 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 250 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 258 # Share build directory with compatible existing builders to save space. | 251 # Share build directory with compatible existing builders to save space. |
| 259 'slavebuilddir': 'linux_asan', | 252 'slavebuilddir': 'linux_asan', |
| 260 } | 253 } |
| 261 | 254 |
| 262 # Optional GPU tryserver | 255 # Optional GPU tryserver |
| 263 chromium_builders.append({ | 256 chromium_builders.append({ |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 c['builders'] = [ | 402 c['builders'] = [ |
| 410 b_chromium_presubmit, | 403 b_chromium_presubmit, |
| 411 b_codesearch_chromeos_builder, | 404 b_codesearch_chromeos_builder, |
| 412 b_codesearch_linux_builder, | 405 b_codesearch_linux_builder, |
| 413 b_linux_chromium_asan_rel_ng, | 406 b_linux_chromium_asan_rel_ng, |
| 414 b_linux_chromium_browser_side_navigation_rel, | 407 b_linux_chromium_browser_side_navigation_rel, |
| 415 b_linux_full_bisect_builder, | 408 b_linux_full_bisect_builder, |
| 416 b_linux_nacl_sdk, | 409 b_linux_nacl_sdk, |
| 417 b_linux_nacl_sdk_build, | 410 b_linux_nacl_sdk_build, |
| 418 b_linux_site_isolation, | 411 b_linux_site_isolation, |
| 419 b_linux_valgrind, | |
| 420 ] + chromium_builders + ozone_builders + variable_builders | 412 ] + chromium_builders + ozone_builders + variable_builders |
| 421 | 413 |
| 422 | 414 |
| 423 # Slaves are loaded from slaves.cfg. | 415 # Slaves are loaded from slaves.cfg. |
| 424 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') | 416 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') |
| 425 | 417 |
| 426 for builder in c['builders']: | 418 for builder in c['builders']: |
| 427 # Associate the slaves to the builders. The configuration is in slaves.cfg. | 419 # Associate the slaves to the builders. The configuration is in slaves.cfg. |
| 428 builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) | 420 builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) |
| 429 # Sets nextSlave function for slave affinity. | 421 # Sets nextSlave function for slave affinity. |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 # base.make_stop_form = hack_stop(base.make_stop_form) | 533 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 542 | 534 |
| 543 | 535 |
| 544 ####### PROJECT IDENTITY | 536 ####### PROJECT IDENTITY |
| 545 | 537 |
| 546 # The 'projectURL' string will be used to provide a link | 538 # The 'projectURL' string will be used to provide a link |
| 547 # from buildbot HTML pages to your project's home page. | 539 # from buildbot HTML pages to your project's home page. |
| 548 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 540 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 549 | 541 |
| 550 # vi: set ts=4 sts=2 sw=2 et: | 542 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |