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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 'factory': m_annotator.BaseFactory('android/tester'), | 72 'factory': m_annotator.BaseFactory('android/tester'), |
73 # Share build directory with compatible existing builders to save space. | 73 # Share build directory with compatible existing builders to save space. |
74 'slavebuilddir': 'android', | 74 'slavebuilddir': 'android', |
75 } | 75 } |
76 | 76 |
77 b_android_compile_dbg = { | 77 b_android_compile_dbg = { |
78 'name': 'android_compile_dbg', | 78 'name': 'android_compile_dbg', |
79 'factory': m_annotator.BaseFactory('chromium_trybot'), | 79 'factory': m_annotator.BaseFactory('chromium_trybot'), |
80 } | 80 } |
81 | 81 |
| 82 # combined builder/tester android recipes |
| 83 b_android_n5_rel_tests_recipe = { |
| 84 'name': 'android_n5_rel_tests_recipe', |
| 85 'factory': m_annotator.BaseFactory('android/tester'), |
| 86 # Share build directory with compatible existing builders to save space. |
| 87 'slavebuilddir': 'android', |
| 88 } |
| 89 |
82 b_android_compile_rel = { | 90 b_android_compile_rel = { |
83 'name': 'android_compile_rel', | 91 'name': 'android_compile_rel', |
84 'factory': m_annotator.BaseFactory('chromium_trybot'), | 92 'factory': m_annotator.BaseFactory('chromium_trybot'), |
85 } | 93 } |
86 | 94 |
87 b_android_rel_tests_recipe = { | 95 b_android_rel_tests_recipe = { |
88 'name': 'android_rel_tests_recipe', | 96 'name': 'android_rel_tests_recipe', |
89 'factory': m_annotator.BaseFactory('android/tester'), | 97 'factory': m_annotator.BaseFactory('android/tester'), |
90 # Share build directory with compatible existing builders to save space. | 98 # Share build directory with compatible existing builders to save space. |
91 'slavebuilddir': 'android', | 99 'slavebuilddir': 'android', |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 'factory': m_annotator.BaseFactory('run_presubmit', {'repo_name': name}), | 419 'factory': m_annotator.BaseFactory('run_presubmit', {'repo_name': name}), |
412 } | 420 } |
413 | 421 |
414 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux') | 422 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux') |
415 b_tools_build_presubmit = presubmit('tools_build') | 423 b_tools_build_presubmit = presubmit('tools_build') |
416 | 424 |
417 | 425 |
418 c['builders'] = [ | 426 c['builders'] = [ |
419 b_android_compile_dbg, | 427 b_android_compile_dbg, |
420 b_android_compile_rel, | 428 b_android_compile_rel, |
421 b_android_dbg_tests_recipe, b_android_arm64_dbg_recipe, | 429 b_android_dbg_tests_recipe, b_android_n5_rel_tests_recipe, |
| 430 b_android_arm64_dbg_recipe, |
422 b_android_fyi_dbg_tests_recipe, | 431 b_android_fyi_dbg_tests_recipe, |
423 b_android_x86_dbg_recipe, | 432 b_android_x86_dbg_recipe, |
424 b_android_clang_dbg_recipe, | 433 b_android_clang_dbg_recipe, |
425 b_android_rel_tests_recipe, | 434 b_android_rel_tests_recipe, |
426 b_android_amp_rel_tests_recipe, | 435 b_android_amp_rel_tests_recipe, |
427 b_android_aosp, | 436 b_android_aosp, |
428 b_linux_clang_tsan, | 437 b_linux_clang_tsan, |
429 b_linux_chromium_asan_rel, | 438 b_linux_chromium_asan_rel, |
430 b_linux_chromium_asan_rel_ng, | 439 b_linux_chromium_asan_rel_ng, |
431 b_linux_full_bisect_builder, | 440 b_linux_full_bisect_builder, |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 # base.make_stop_form = hack_stop(base.make_stop_form) | 599 # base.make_stop_form = hack_stop(base.make_stop_form) |
591 | 600 |
592 | 601 |
593 ####### PROJECT IDENTITY | 602 ####### PROJECT IDENTITY |
594 | 603 |
595 # The 'projectURL' string will be used to provide a link | 604 # The 'projectURL' string will be used to provide a link |
596 # from buildbot HTML pages to your project's home page. | 605 # from buildbot HTML pages to your project's home page. |
597 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 606 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
598 | 607 |
599 # vi: set ts=4 sts=2 sw=2 et: | 608 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |