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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
256 {'use_mirror': ActiveMaster.is_production_host or None}), | 256 {'use_mirror': ActiveMaster.is_production_host or None}), |
257 }] | 257 }] |
258 | 258 |
259 b_linux_chromium_asan_rel = { | 259 b_linux_chromium_asan_rel = { |
260 'name': 'linux_chromium_asan_rel', | 260 'name': 'linux_chromium_asan_rel', |
261 'factory': m_annotator.BaseFactory('chromium_trybot_legacy'), | 261 'factory': m_annotator.BaseFactory('chromium_trybot_legacy'), |
262 # Share build directory with compatible existing builders to save space. | 262 # Share build directory with compatible existing builders to save space. |
263 'slavebuilddir': 'linux_asan', | 263 'slavebuilddir': 'linux_asan', |
264 } | 264 } |
265 | 265 |
266 b_linux_site_isolation = { | |
267 'name': 'linux_site_isolation', | |
268 'factory': m_annotator.BaseFactory('chromium_trybot'), | |
269 # Share build directory with compatible existing builders to save space. | |
hinoka
2015/02/21 01:29:11
Remove this comment, its not actually true in this
alexmos
2015/02/21 01:52:57
Comment removed. Thinking about this though, our
hinoka
2015/02/24 19:49:31
Hm you're right. Maybe its okay to share with the
| |
270 'slavebuilddir': 'linux_site_isolation', | |
271 } | |
272 | |
266 b_linux_chromium_asan_rel_ng = { | 273 b_linux_chromium_asan_rel_ng = { |
267 'name': 'linux_chromium_asan_rel_ng', | 274 'name': 'linux_chromium_asan_rel_ng', |
268 'factory': m_annotator.BaseFactory('chromium_trybot'), | 275 'factory': m_annotator.BaseFactory('chromium_trybot'), |
269 # Share build directory with compatible existing builders to save space. | 276 # Share build directory with compatible existing builders to save space. |
270 'slavebuilddir': 'linux_asan', | 277 'slavebuilddir': 'linux_asan', |
271 } | 278 } |
272 | 279 |
273 # browser_tests run for two hours. Please don't add them to the bot. | 280 # browser_tests run for two hours. Please don't add them to the bot. |
274 b_linux_clang_tsan = { | 281 b_linux_clang_tsan = { |
275 'name': 'linux_clang_tsan', | 282 'name': 'linux_clang_tsan', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
398 b_android_x86_dbg_recipe, | 405 b_android_x86_dbg_recipe, |
399 b_android_clang_dbg_recipe, | 406 b_android_clang_dbg_recipe, |
400 b_android_rel_tests_recipe, | 407 b_android_rel_tests_recipe, |
401 b_android_aosp, | 408 b_android_aosp, |
402 b_linux_clang_tsan, | 409 b_linux_clang_tsan, |
403 b_linux_chromium_asan_rel, | 410 b_linux_chromium_asan_rel, |
404 b_linux_chromium_asan_rel_ng, | 411 b_linux_chromium_asan_rel_ng, |
405 b_linux_full_bisect_builder, | 412 b_linux_full_bisect_builder, |
406 b_linux_nacl_sdk, b_linux_nacl_sdk_bionic, | 413 b_linux_nacl_sdk, b_linux_nacl_sdk_bionic, |
407 b_linux_nacl_sdk_build, b_linux_nacl_sdk_bionic_build, | 414 b_linux_nacl_sdk_build, b_linux_nacl_sdk_bionic_build, |
415 b_linux_site_isolation, | |
408 b_chromium_presubmit, | 416 b_chromium_presubmit, |
409 b_tools_build_presubmit, | 417 b_tools_build_presubmit, |
410 b_infra_tester, | 418 b_infra_tester, |
411 ] + chromium_builders + ozone_builders | 419 ] + chromium_builders + ozone_builders |
412 | 420 |
413 | 421 |
414 # Slaves are loaded from slaves.cfg. | 422 # Slaves are loaded from slaves.cfg. |
415 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') | 423 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') |
416 | 424 |
417 for builder in c['builders']: | 425 for builder in c['builders']: |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
572 ) | 580 ) |
573 | 581 |
574 | 582 |
575 ####### PROJECT IDENTITY | 583 ####### PROJECT IDENTITY |
576 | 584 |
577 # The 'projectURL' string will be used to provide a link | 585 # The 'projectURL' string will be used to provide a link |
578 # from buildbot HTML pages to your project's home page. | 586 # from buildbot HTML pages to your project's home page. |
579 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 587 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
580 | 588 |
581 # vi: set ts=4 sts=2 sw=2 et: | 589 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |