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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 {'use_mirror': ActiveMaster.is_production_host or None}), | 290 {'use_mirror': ActiveMaster.is_production_host or None}), |
291 }] | 291 }] |
292 | 292 |
293 b_linux_chromium_asan_rel = { | 293 b_linux_chromium_asan_rel = { |
294 'name': 'linux_chromium_asan_rel', | 294 'name': 'linux_chromium_asan_rel', |
295 'factory': m_annotator.BaseFactory('chromium_trybot_legacy'), | 295 'factory': m_annotator.BaseFactory('chromium_trybot_legacy'), |
296 # Share build directory with compatible existing builders to save space. | 296 # Share build directory with compatible existing builders to save space. |
297 'slavebuilddir': 'linux_asan', | 297 'slavebuilddir': 'linux_asan', |
298 } | 298 } |
299 | 299 |
| 300 b_linux_site_isolation = { |
| 301 'name': 'linux_site_isolation', |
| 302 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 303 # Share build directory with compatible existing builders to save space. |
| 304 'slavebuilddir': 'linux', |
| 305 } |
| 306 |
300 b_linux_chromium_asan_rel_ng = { | 307 b_linux_chromium_asan_rel_ng = { |
301 'name': 'linux_chromium_asan_rel_ng', | 308 'name': 'linux_chromium_asan_rel_ng', |
302 'factory': m_annotator.BaseFactory('chromium_trybot'), | 309 'factory': m_annotator.BaseFactory('chromium_trybot'), |
303 # Share build directory with compatible existing builders to save space. | 310 # Share build directory with compatible existing builders to save space. |
304 'slavebuilddir': 'linux_asan', | 311 'slavebuilddir': 'linux_asan', |
305 } | 312 } |
306 | 313 |
307 # browser_tests run for two hours. Please don't add them to the bot. | 314 # browser_tests run for two hours. Please don't add them to the bot. |
308 b_linux_clang_tsan = { | 315 b_linux_clang_tsan = { |
309 'name': 'linux_clang_tsan', | 316 'name': 'linux_clang_tsan', |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 b_android_clang_dbg_recipe, | 425 b_android_clang_dbg_recipe, |
419 b_android_rel_tests_recipe, | 426 b_android_rel_tests_recipe, |
420 b_android_amp_rel_tests_recipe, | 427 b_android_amp_rel_tests_recipe, |
421 b_android_aosp, | 428 b_android_aosp, |
422 b_linux_clang_tsan, | 429 b_linux_clang_tsan, |
423 b_linux_chromium_asan_rel, | 430 b_linux_chromium_asan_rel, |
424 b_linux_chromium_asan_rel_ng, | 431 b_linux_chromium_asan_rel_ng, |
425 b_linux_full_bisect_builder, | 432 b_linux_full_bisect_builder, |
426 b_linux_nacl_sdk, b_linux_nacl_sdk_bionic, | 433 b_linux_nacl_sdk, b_linux_nacl_sdk_bionic, |
427 b_linux_nacl_sdk_build, b_linux_nacl_sdk_bionic_build, | 434 b_linux_nacl_sdk_build, b_linux_nacl_sdk_bionic_build, |
| 435 b_linux_site_isolation, |
428 b_chromium_presubmit, | 436 b_chromium_presubmit, |
429 b_tools_build_presubmit, | 437 b_tools_build_presubmit, |
430 b_infra_tester, | 438 b_infra_tester, |
431 ] + chromium_builders + ozone_builders | 439 ] + chromium_builders + ozone_builders |
432 | 440 |
433 | 441 |
434 # Slaves are loaded from slaves.cfg. | 442 # Slaves are loaded from slaves.cfg. |
435 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') | 443 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') |
436 | 444 |
437 for builder in c['builders']: | 445 for builder in c['builders']: |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 ) | 600 ) |
593 | 601 |
594 | 602 |
595 ####### PROJECT IDENTITY | 603 ####### PROJECT IDENTITY |
596 | 604 |
597 # The 'projectURL' string will be used to provide a link | 605 # The 'projectURL' string will be used to provide a link |
598 # from buildbot HTML pages to your project's home page. | 606 # from buildbot HTML pages to your project's home page. |
599 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 607 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
600 | 608 |
601 # vi: set ts=4 sts=2 sw=2 et: | 609 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |