Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 23591008: Add mini_installer tests to the Chromium build infrastructure. (Closed) Base URL: http://src.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # vim: ft=python: 1 # vim: ft=python:
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 from buildbot.changes import svnpoller 6 from buildbot.changes import svnpoller
7 from buildbot.scheduler import Dependent 7 from buildbot.scheduler import Dependent
8 from buildbot.scheduler import Nightly 8 from buildbot.scheduler import Nightly
9 from buildbot.scheduler import Periodic 9 from buildbot.scheduler import Periodic
10 from buildbot.scheduler import Scheduler 10 from buildbot.scheduler import Scheduler
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 'Chromium Linux Goma Canary', 141 'Chromium Linux Goma Canary',
142 'Chromium Linux Precise Goma LinkTest', 142 'Chromium Linux Precise Goma LinkTest',
143 'Chromium Linux32 Goma Canary', 143 'Chromium Linux32 Goma Canary',
144 'Chromium Mac 10.6 Goma Canary', 144 'Chromium Mac 10.6 Goma Canary',
145 'Chromium Mac 10.7 Goma Canary', 145 'Chromium Mac 10.7 Goma Canary',
146 'Chromium Mac 10.6 Ninja Goma Canary', 146 'Chromium Mac 10.6 Ninja Goma Canary',
147 'Chromium Mac 10.7 Ninja Goma Canary', 147 'Chromium Mac 10.7 Ninja Goma Canary',
148 'Chromium Mac 10.8 x64 (experimental)', 148 'Chromium Mac 10.8 x64 (experimental)',
149 'Windows 8 App Certification', 149 'Windows 8 App Certification',
150 'ChromiumOS Linux Tests', 150 'ChromiumOS Linux Tests',
151 'Chromium Win MiniInstaller Tests',
csharp 2013/08/28 19:25:00 If you can use the standard win_rel output, then y
sukolsak 2013/08/28 19:46:19 Done.
151 ]) 152 ])
152 153
153 # Triggerable scheduler for Windows Release. 154 # Triggerable scheduler for Windows Release.
154 s_chromium_win_rel = Triggerable( 155 s_chromium_win_rel = Triggerable(
155 name='win_rel', 156 name='win_rel',
156 builderNames=['Chrome Frame Perf', 157 builderNames=['Chrome Frame Perf',
157 'Chrome Frame Tests (ie6)(peruser)', 158 'Chrome Frame Tests (ie6)(peruser)',
158 'Chrome Frame Tests (ie7)(peruser)', 159 'Chrome Frame Tests (ie7)(peruser)',
159 'Chrome Frame Tests (ie8)(peruser)', 160 'Chrome Frame Tests (ie8)(peruser)',
160 'More NaCl Tests (win32)', 161 'More NaCl Tests (win32)',
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 factory_properties={'process_dumps': True, 647 factory_properties={'process_dumps': True,
647 'start_crash_handler': True}) 648 'start_crash_handler': True})
648 649
649 f_chromium_rel_tests_2 = win_build().ChromiumFactory( 650 f_chromium_rel_tests_2 = win_build().ChromiumFactory(
650 slave_type='Tester', 651 slave_type='Tester',
651 build_url=chromium_rel_archive, 652 build_url=chromium_rel_archive,
652 tests=tests_win_2, 653 tests=tests_win_2,
653 factory_properties={'process_dumps': True, 654 factory_properties={'process_dumps': True,
654 'start_crash_handler': True}) 655 'start_crash_handler': True})
655 656
657 f_cr_win_rel_miniinstaller = win_build().ChromiumFactory(
csharp 2013/08/28 19:25:00 nit: miniinstaller -> mini_installer (here and els
sukolsak 2013/08/28 19:46:19 Done.
658 slave_type='Tester',
659 build_url=chromium_rel_archive,
660 tests=['mini_installer'],
661 factory_properties={'process_dumps': True,
662 'start_crash_handler': True,})
663
664
656 f_cr_rel_perf_frame = win_build().ChromiumFactory( 665 f_cr_rel_perf_frame = win_build().ChromiumFactory(
657 slave_type='Tester', 666 slave_type='Tester',
658 build_url=chromium_rel_archive_ext, 667 build_url=chromium_rel_archive_ext,
659 tests=['chrome_frame_perftests'], 668 tests=['chrome_frame_perftests'],
660 factory_properties={'show_perf_results': True, 669 factory_properties={'show_perf_results': True,
661 'expectations': True, 670 'expectations': True,
662 'perf_id': 'chromium-rel-frame', 671 'perf_id': 'chromium-rel-frame',
663 'process_dumps': True, 672 'process_dumps': True,
664 'start_crash_handler': True,}) 673 'start_crash_handler': True,})
665 674
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1934 'auto_reboot': False, 1943 'auto_reboot': False,
1935 } 1944 }
1936 1945
1937 b_chromium_win_ninja_goma_shared_2012 = { 1946 b_chromium_win_ninja_goma_shared_2012 = {
1938 'name': 'Chromium Win VS2012 Goma', 1947 'name': 'Chromium Win VS2012 Goma',
1939 'factory': f_chromium_win_ninja_goma_shared_2012, 1948 'factory': f_chromium_win_ninja_goma_shared_2012,
1940 'category': 'ninja', 1949 'category': 'ninja',
1941 'auto_reboot': False, 1950 'auto_reboot': False,
1942 } 1951 }
1943 1952
1953 b_chromium_win_miniinstaller = {
1954 'name': 'Chromium Win MiniInstaller Tests',
1955 'factory': f_cr_win_rel_miniinstaller,
1956 'category': 'windows',
1957 'auto_reboot': False,
1958 }
1959
1944 b_chromium_codesearch_scheduler = { 1960 b_chromium_codesearch_scheduler = {
1945 'name': 'Chromium Codesearch Scheduler', 1961 'name': 'Chromium Codesearch Scheduler',
1946 'factory': f_chromium_codesearch_scheduler, 1962 'factory': f_chromium_codesearch_scheduler,
1947 'category': 'codesearch', 1963 'category': 'codesearch',
1948 'auto_reboot': False, 1964 'auto_reboot': False,
1949 } 1965 }
1950 1966
1951 b_chromium_linux_codesearch = { 1967 b_chromium_linux_codesearch = {
1952 'name': 'Chromium Linux Codesearch', 1968 'name': 'Chromium Linux Codesearch',
1953 'factory': f_chromium_codesearch_linux, 1969 'factory': f_chromium_codesearch_linux,
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
2345 b_chromium_rel_win_memory_measurement, 2361 b_chromium_rel_win_memory_measurement,
2346 2362
2347 # Coverage 2363 # Coverage
2348 b_coverage_dbg_linux, 2364 b_coverage_dbg_linux,
2349 2365
2350 # Codesearch 2366 # Codesearch
2351 b_chromium_codesearch_scheduler, 2367 b_chromium_codesearch_scheduler,
2352 b_chromium_linux_codesearch, 2368 b_chromium_linux_codesearch,
2353 b_chromiumos_codesearch, 2369 b_chromiumos_codesearch,
2354 2370
2371 # MiniInstaller
2372 b_chromium_win_miniinstaller,
2355 ] 2373 ]
2356 2374
2357 c['builders'].append(b_chromium_rel_linux_browser_valgrind_builder) 2375 c['builders'].append(b_chromium_rel_linux_browser_valgrind_builder)
2358 LINUX_BROWSER_VALGRIND_TESTERS = 4 2376 LINUX_BROWSER_VALGRIND_TESTERS = 4
2359 for i in range(LINUX_BROWSER_VALGRIND_TESTERS): 2377 for i in range(LINUX_BROWSER_VALGRIND_TESTERS):
2360 c['builders'].append( 2378 c['builders'].append(
2361 linux_browser_valgrind_tester(i + 1, LINUX_BROWSER_VALGRIND_TESTERS)) 2379 linux_browser_valgrind_tester(i + 1, LINUX_BROWSER_VALGRIND_TESTERS))
2362 2380
2363 c['builders'].append(b_chromium_windows_drmemory_builder) 2381 c['builders'].append(b_chromium_windows_drmemory_builder)
2364 WINDOWS_BROWSER_DRMEMORY_FULL_TESTERS = 4 2382 WINDOWS_BROWSER_DRMEMORY_FULL_TESTERS = 4
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
2472 subject='goma canary buildbot %(result)s in %(projectName)s ' 2490 subject='goma canary buildbot %(result)s in %(projectName)s '
2473 'on %(builder)s', 2491 'on %(builder)s',
2474 extraRecipients=['goma+alert@google.com'], 2492 extraRecipients=['goma+alert@google.com'],
2475 sendToInterestedUsers=False)) 2493 sendToInterestedUsers=False))
2476 2494
2477 2495
2478 ####### PROJECT IDENTITY 2496 ####### PROJECT IDENTITY
2479 2497
2480 # Buildbot master url: 2498 # Buildbot master url:
2481 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' 2499 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/'
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | scripts/master/factory/chromium_commands.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698