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

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: Address robertshield's comment. 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'ChromiumOS Linux Tests', 150 'ChromiumOS Linux Tests',
151 ]) 151 ])
152 152
153 # Triggerable scheduler for Windows Release. 153 # Triggerable scheduler for Windows Release.
154 s_chromium_win_rel = Triggerable( 154 s_chromium_win_rel = Triggerable(
155 name='win_rel', 155 name='win_rel',
156 builderNames=['Chrome Frame Perf', 156 builderNames=['Chrome Frame Perf',
157 'Chrome Frame Tests (ie6)(peruser)', 157 'Chrome Frame Tests (ie6)(peruser)',
158 'Chrome Frame Tests (ie7)(peruser)', 158 'Chrome Frame Tests (ie7)(peruser)',
159 'Chrome Frame Tests (ie8)(peruser)', 159 'Chrome Frame Tests (ie8)(peruser)',
160 'Chromium Win MiniInstaller Tests',
160 'More NaCl Tests (win32)', 161 'More NaCl Tests (win32)',
161 'More NaCl Tests (win64)', 162 'More NaCl Tests (win64)',
162 'Win8 Tests (1)', 163 'Win8 Tests (1)',
163 'Win8 Tests (2)', 164 'Win8 Tests (2)',
164 'Windows Tests (Memory benchmark)']) 165 'Windows Tests (Memory benchmark)'])
165 166
166 # Triggerable scheduler for Windows Debug. 167 # Triggerable scheduler for Windows Debug.
167 s_chromium_win_dbg = Triggerable( 168 s_chromium_win_dbg = Triggerable(
168 name='win_dbg', 169 name='win_dbg',
169 builderNames=['Vista Tests (dbg)(1)', 170 builderNames=['Vista Tests (dbg)(1)',
(...skipping 476 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_mini_installer = win_build().ChromiumFactory(
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
656 f_cr_rel_perf_frame = win_build().ChromiumFactory( 664 f_cr_rel_perf_frame = win_build().ChromiumFactory(
657 slave_type='Tester', 665 slave_type='Tester',
658 build_url=chromium_rel_archive_ext, 666 build_url=chromium_rel_archive_ext,
659 tests=['chrome_frame_perftests'], 667 tests=['chrome_frame_perftests'],
660 factory_properties={'show_perf_results': True, 668 factory_properties={'show_perf_results': True,
661 'expectations': True, 669 'expectations': True,
662 'perf_id': 'chromium-rel-frame', 670 'perf_id': 'chromium-rel-frame',
663 'process_dumps': True, 671 'process_dumps': True,
664 'start_crash_handler': True,}) 672 'start_crash_handler': True,})
665 673
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1934 'auto_reboot': False, 1942 'auto_reboot': False,
1935 } 1943 }
1936 1944
1937 b_chromium_win_ninja_goma_shared_2012 = { 1945 b_chromium_win_ninja_goma_shared_2012 = {
1938 'name': 'Chromium Win VS2012 Goma', 1946 'name': 'Chromium Win VS2012 Goma',
1939 'factory': f_chromium_win_ninja_goma_shared_2012, 1947 'factory': f_chromium_win_ninja_goma_shared_2012,
1940 'category': 'ninja', 1948 'category': 'ninja',
1941 'auto_reboot': False, 1949 'auto_reboot': False,
1942 } 1950 }
1943 1951
1952 b_chromium_win_mini_installer = {
1953 'name': 'Chromium Win MiniInstaller Tests',
1954 'factory': f_cr_win_rel_mini_installer,
1955 'category': 'windows',
1956 'auto_reboot': False,
1957 }
1958
1944 b_chromium_codesearch_scheduler = { 1959 b_chromium_codesearch_scheduler = {
1945 'name': 'Chromium Codesearch Scheduler', 1960 'name': 'Chromium Codesearch Scheduler',
1946 'factory': f_chromium_codesearch_scheduler, 1961 'factory': f_chromium_codesearch_scheduler,
1947 'category': 'codesearch', 1962 'category': 'codesearch',
1948 'auto_reboot': False, 1963 'auto_reboot': False,
1949 } 1964 }
1950 1965
1951 b_chromium_linux_codesearch = { 1966 b_chromium_linux_codesearch = {
1952 'name': 'Chromium Linux Codesearch', 1967 'name': 'Chromium Linux Codesearch',
1953 'factory': f_chromium_codesearch_linux, 1968 'factory': f_chromium_codesearch_linux,
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
2345 b_chromium_rel_win_memory_measurement, 2360 b_chromium_rel_win_memory_measurement,
2346 2361
2347 # Coverage 2362 # Coverage
2348 b_coverage_dbg_linux, 2363 b_coverage_dbg_linux,
2349 2364
2350 # Codesearch 2365 # Codesearch
2351 b_chromium_codesearch_scheduler, 2366 b_chromium_codesearch_scheduler,
2352 b_chromium_linux_codesearch, 2367 b_chromium_linux_codesearch,
2353 b_chromiumos_codesearch, 2368 b_chromiumos_codesearch,
2354 2369
2370 # MiniInstaller
2371 b_chromium_win_mini_installer,
2355 ] 2372 ]
2356 2373
2357 c['builders'].append(b_chromium_rel_linux_browser_valgrind_builder) 2374 c['builders'].append(b_chromium_rel_linux_browser_valgrind_builder)
2358 LINUX_BROWSER_VALGRIND_TESTERS = 4 2375 LINUX_BROWSER_VALGRIND_TESTERS = 4
2359 for i in range(LINUX_BROWSER_VALGRIND_TESTERS): 2376 for i in range(LINUX_BROWSER_VALGRIND_TESTERS):
2360 c['builders'].append( 2377 c['builders'].append(
2361 linux_browser_valgrind_tester(i + 1, LINUX_BROWSER_VALGRIND_TESTERS)) 2378 linux_browser_valgrind_tester(i + 1, LINUX_BROWSER_VALGRIND_TESTERS))
2362 2379
2363 c['builders'].append(b_chromium_windows_drmemory_builder) 2380 c['builders'].append(b_chromium_windows_drmemory_builder)
2364 WINDOWS_BROWSER_DRMEMORY_FULL_TESTERS = 4 2381 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 ' 2489 subject='goma canary buildbot %(result)s in %(projectName)s '
2473 'on %(builder)s', 2490 'on %(builder)s',
2474 extraRecipients=['goma+alert@google.com'], 2491 extraRecipients=['goma+alert@google.com'],
2475 sendToInterestedUsers=False)) 2492 sendToInterestedUsers=False))
2476 2493
2477 2494
2478 ####### PROJECT IDENTITY 2495 ####### PROJECT IDENTITY
2479 2496
2480 # Buildbot master url: 2497 # Buildbot master url:
2481 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' 2498 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