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 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 target='Release', | 492 target='Release', |
493 goma=True, | 493 goma=True, |
494 options=common_targets + ['dbus_unittests'], | 494 options=common_targets + ['dbus_unittests'], |
495 tests=linux_tests + ['sizes'], | 495 tests=linux_tests + ['sizes'], |
496 builder_name='linux_rel_alt', | 496 builder_name='linux_rel_alt', |
497 slavebuilddir='linux', | 497 slavebuilddir='linux', |
498 factory_properties={ | 498 factory_properties={ |
499 'use_xvfb_on_linux': True, | 499 'use_xvfb_on_linux': True, |
500 }) | 500 }) |
501 | 501 |
| 502 b_linux_precise = CreateBuilder( |
| 503 platform='linux', |
| 504 target='Debug', |
| 505 goma=True, |
| 506 options=common_targets + ['dbus_unittests'], |
| 507 tests=linux_tests, |
| 508 builder_name='linux_precise', |
| 509 slavebuilddir='linux_precise', |
| 510 factory_properties={ |
| 511 'use_xvfb_on_linux': True, |
| 512 }) |
| 513 |
502 b_linux_rel_precise = CreateBuilder( | 514 b_linux_rel_precise = CreateBuilder( |
503 platform='linux', | 515 platform='linux', |
504 target='Release', | 516 target='Release', |
505 goma=True, | 517 goma=True, |
506 options=common_targets + ['dbus_unittests'], | 518 options=common_targets + ['dbus_unittests'], |
507 tests=linux_tests + ['sizes'], | 519 tests=linux_tests + ['sizes'], |
508 builder_name='linux_rel_precise', | 520 builder_name='linux_rel_precise', |
509 slavebuilddir='linux_precise', | 521 slavebuilddir='linux_precise', |
510 factory_properties={ | 522 factory_properties={ |
511 'use_xvfb_on_linux': True, | 523 'use_xvfb_on_linux': True, |
(...skipping 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1815 'linux_use_tcmalloc=0 ' | 1827 'linux_use_tcmalloc=0 ' |
1816 'armv7=1 ' | 1828 'armv7=1 ' |
1817 'arm_thumb=1 ' | 1829 'arm_thumb=1 ' |
1818 'arm_neon=0 ' | 1830 'arm_neon=0 ' |
1819 'arm_fpu=vfpv3-d16 ' | 1831 'arm_fpu=vfpv3-d16 ' |
1820 'chromeos=1 ' # Since this is the intersting variation. | 1832 'chromeos=1 ' # Since this is the intersting variation. |
1821 ), | 1833 ), |
1822 } | 1834 } |
1823 | 1835 |
1824 c['builders'] = [ | 1836 c['builders'] = [ |
1825 b_linux_rel, b_linux_rel_alt, b_linux_rel_precise, b_linux_rel_precise32, | 1837 b_linux_rel, b_linux_rel_alt, |
| 1838 b_linux_precise, b_linux_rel_precise, b_linux_rel_precise32, |
1826 b_mac_rel, b_win_rel, | 1839 b_mac_rel, b_win_rel, |
1827 b_win_x64_rel, | 1840 b_win_x64_rel, |
1828 b_linux_rel_naclmore, b_mac_rel_naclmore, b_win_rel_naclmore, | 1841 b_linux_rel_naclmore, b_mac_rel_naclmore, b_win_rel_naclmore, |
1829 b_linux_clang, | 1842 b_linux_clang, |
1830 b_linux, b_mac, b_win, | 1843 b_linux, b_mac, b_win, |
1831 b_android_dbg, b_android_dbg_triggered_tests, | 1844 b_android_dbg, b_android_dbg_triggered_tests, |
1832 b_android_fyi_dbg, b_android_fyi_dbg_triggered_tests, | 1845 b_android_fyi_dbg, b_android_fyi_dbg_triggered_tests, |
1833 b_android_clang_dbg, b_android_rel, b_android_rel_triggered_tests, | 1846 b_android_clang_dbg, b_android_rel, b_android_rel_triggered_tests, |
1834 b_ios_rel_device, b_ios_dbg_simulator, | 1847 b_ios_rel_device, b_ios_dbg_simulator, |
1835 b_linux_chromeos, | 1848 b_linux_chromeos, |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2002 ####### PROJECT IDENTITY | 2015 ####### PROJECT IDENTITY |
2003 | 2016 |
2004 # The 'projectURL' string will be used to provide a link | 2017 # The 'projectURL' string will be used to provide a link |
2005 # from buildbot HTML pages to your project's home page. | 2018 # from buildbot HTML pages to your project's home page. |
2006 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2019 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
2007 | 2020 |
2008 # Buildbot master url: | 2021 # Buildbot master url: |
2009 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2022 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
2010 | 2023 |
2011 # vi: set ts=4 sts=2 sw=2 et: | 2024 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |