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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1290 # CreateBuilder() adds "fastbuild=1" for the other 2 clang bots. | 1290 # CreateBuilder() adds "fastbuild=1" for the other 2 clang bots. |
1291 'gclient_env': { | 1291 'gclient_env': { |
1292 'GYP_GENERATORS': 'ninja', | 1292 'GYP_GENERATORS': 'ninja', |
1293 'GYP_DEFINES': ('chromeos=1 target_arch=ia32' | 1293 'GYP_DEFINES': ('chromeos=1 target_arch=ia32' |
1294 ' clang=1 clang_use_chrome_plugins=1' | 1294 ' clang=1 clang_use_chrome_plugins=1' |
1295 ' fastbuild=1' | 1295 ' fastbuild=1' |
1296 ' ffmpeg_branding=ChromeOS proprietary_codecs=1' | 1296 ' ffmpeg_branding=ChromeOS proprietary_codecs=1' |
1297 ' component=shared_library')}}) | 1297 ' component=shared_library')}}) |
1298 } | 1298 } |
1299 | 1299 |
1300 b_win_aura = CreateBuilder( | 1300 b_win_aura = CreateBuilder( |
cmp
2013/01/09 18:47:54
Let's make this b_win7_aura.
scottmg
2013/01/09 18:56:42
Done.
| |
1301 platform='win32', | 1301 platform='win32', |
1302 target='Debug', | 1302 target='Debug', |
1303 builder_name='win_aura', | 1303 builder_name='win_aura (win7)', |
cmp
2013/01/09 18:47:54
Let's make this win7_aura.
scottmg
2013/01/09 18:56:42
Done.
| |
1304 options=['aura_builder'], | 1304 options=['aura_builder'], |
1305 tests=[ | 1305 tests=[ |
1306 'ash_unittests', | 1306 'ash_unittests', |
1307 'aura', | 1307 'aura', |
1308 'browser_tests', | 1308 'browser_tests', |
1309 'compositor', | 1309 'compositor', |
1310 'content_browsertests', | 1310 'content_browsertests', |
1311 'content_unittests', | 1311 'content_unittests', |
1312 'device_unittests', | 1312 'device_unittests', |
1313 'interactive_ui', | 1313 'interactive_ui', |
1314 'unit_unit', | 1314 'unit_unit', |
1315 'views', | 1315 'views', |
1316 ], | 1316 ], |
1317 goma=True, | 1317 goma=True, |
1318 factory_properties={ | 1318 factory_properties={ |
1319 'sharded_tests': win_sharded, | 1319 'sharded_tests': win_sharded, |
1320 'gclient_env': { | 1320 'gclient_env': { |
1321 'GYP_DEFINES': 'use_aura=1', | 1321 'GYP_DEFINES': 'use_aura=1', |
1322 }, | 1322 }, |
1323 }) | 1323 }) |
1324 | 1324 |
1325 # this matches the bot on the main waterfall soon | 1325 # this matches the bot on the main waterfall soon |
1326 b_win_ash = CreateBuilder( | 1326 b_win_aura_win8 = CreateBuilder( |
cmp
2013/01/09 18:47:54
Let's make this b_win8_aura.
scottmg
2013/01/09 18:56:42
Done.
| |
1327 platform='win32', | 1327 platform='win32', |
1328 target='Debug', | 1328 target='Debug', |
1329 builder_name='win_ash', | 1329 builder_name='win_aura (win8)', |
cmp
2013/01/09 18:47:54
Let's make this win8_aura.
scottmg
2013/01/09 18:56:42
Done.
| |
1330 options=['aura_builder'], | 1330 options=['aura_builder'], |
1331 tests=[ | 1331 tests=[ |
1332 'ash_unittests', | 1332 'ash_unittests', |
1333 'aura', | 1333 'aura', |
1334 'compositor', | 1334 'compositor', |
1335 'views', | 1335 'views', |
1336 ], | 1336 ], |
1337 goma=True, | 1337 goma=True, |
1338 factory_properties={ | 1338 factory_properties={ |
1339 'gclient_env': { | 1339 'gclient_env': { |
1340 'GYP_DEFINES': 'use_ash=1', | 1340 'GYP_DEFINES': 'use_aura=1', |
1341 }, | 1341 }, |
1342 }) | 1342 }) |
1343 | 1343 |
1344 # browser_tests run for a hour. Please don't add them to the bot. | 1344 # browser_tests run for a hour. Please don't add them to the bot. |
1345 b_linux_asan = { | 1345 b_linux_asan = { |
1346 'name': 'linux_asan', | 1346 'name': 'linux_asan', |
1347 'factory': m_chromium_linux.ChromiumASANFactory( | 1347 'factory': m_chromium_linux.ChromiumASANFactory( |
1348 slave_type='Trybot', | 1348 slave_type='Trybot', |
1349 options=[ | 1349 options=[ |
1350 '--build-tool=ninja', | 1350 '--build-tool=ninja', |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1782 b_linux_chromeos, | 1782 b_linux_chromeos, |
1783 b_valgrind_linux, b_valgrind_mac, | 1783 b_valgrind_linux, b_valgrind_mac, |
1784 b_linux_chromeos_valgrind, | 1784 b_linux_chromeos_valgrind, |
1785 b_tsan_linux, b_drmemory_win, | 1785 b_tsan_linux, b_drmemory_win, |
1786 b_linux_layout, b_mac_layout, b_win_layout, | 1786 b_linux_layout, b_mac_layout, b_win_layout, |
1787 b_linux_layout_rel, b_mac_layout_rel, b_win_layout_rel, | 1787 b_linux_layout_rel, b_mac_layout_rel, b_win_layout_rel, |
1788 b_coverage_linux, | 1788 b_coverage_linux, |
1789 b_win_chrome_frame, | 1789 b_win_chrome_frame, |
1790 b_swarm, | 1790 b_swarm, |
1791 b_linux_chromeos_clang, | 1791 b_linux_chromeos_clang, |
1792 b_linux_futura, b_linux_aura, b_win_ash, b_win_aura, | 1792 b_linux_futura, b_linux_aura, b_win_aura_win8, b_win_aura, |
1793 b_linux_asan, | 1793 b_linux_asan, |
1794 b_linux_chromeos_asan, | 1794 b_linux_chromeos_asan, |
1795 b_mac_asan, | 1795 b_mac_asan, |
1796 b_linux_heapcheck, | 1796 b_linux_heapcheck, |
1797 b_linux_redux, | 1797 b_linux_redux, |
1798 b_cros_pfq_x86, b_cros_pfq_amd64, b_cros_pfq_daisy, | 1798 b_cros_pfq_x86, b_cros_pfq_amd64, b_cros_pfq_daisy, |
1799 b_linux_gpu, b_win_gpu, b_mac_gpu, b_mac_gpu_retina, | 1799 b_linux_gpu, b_win_gpu, b_mac_gpu, b_mac_gpu_retina, |
1800 b_linux_nacl_sdk, b_win_nacl_sdk, b_mac_nacl_sdk, | 1800 b_linux_nacl_sdk, b_win_nacl_sdk, b_mac_nacl_sdk, |
1801 b_linux_perf, b_win_perf, b_mac_perf, | 1801 b_linux_perf, b_win_perf, b_mac_perf, |
1802 b_mac_asan_alt, b_valgrind_mac_alt, b_mac_layout_alt, b_mac_layout_rel_alt, | 1802 b_mac_asan_alt, b_valgrind_mac_alt, b_mac_layout_alt, b_mac_layout_rel_alt, |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1947 ####### PROJECT IDENTITY | 1947 ####### PROJECT IDENTITY |
1948 | 1948 |
1949 # The 'projectURL' string will be used to provide a link | 1949 # The 'projectURL' string will be used to provide a link |
1950 # from buildbot HTML pages to your project's home page. | 1950 # from buildbot HTML pages to your project's home page. |
1951 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1951 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
1952 | 1952 |
1953 # Buildbot master url: | 1953 # Buildbot master url: |
1954 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1954 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
1955 | 1955 |
1956 # vi: set ts=4 sts=2 sw=2 et: | 1956 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |