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