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

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

Issue 854913002: clang/win bots: Don't run content_unittests twice. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.filter import ChangeFilter 6 from buildbot.changes.filter import ChangeFilter
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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 slave_type='BuilderTester', 750 slave_type='BuilderTester',
751 clobber=True, 751 clobber=True,
752 target='Release_x64', 752 target='Release_x64',
753 tests=win_x64_tests, 753 tests=win_x64_tests,
754 options=['--build-tool=ninja', '--', 'chromium_builder_tests'], 754 options=['--build-tool=ninja', '--', 'chromium_builder_tests'],
755 factory_properties={ 755 factory_properties={
756 'gclient_env': { 756 'gclient_env': {
757 'GYP_DEFINES': 'target_arch=x64', 757 'GYP_DEFINES': 'target_arch=x64',
758 }}) 758 }})
759 759
760 win_clang_tests = tests_win_1 + tests_win_2 + ['content_unittests'] 760 win_clang_tests = tests_win_1 + tests_win_2
761 761
762 f_chromium_win_clang_dbg = win_out().ChromiumFactory( 762 f_chromium_win_clang_dbg = win_out().ChromiumFactory(
763 slave_type='Builder', 763 slave_type='Builder',
764 target='Debug', 764 target='Debug',
765 factory_properties={ 765 factory_properties={
766 'trigger': 'cr_win_clang_dbg', 766 'trigger': 'cr_win_clang_dbg',
767 'build_url': chromium_win_clang_dbg_archive, 767 'build_url': chromium_win_clang_dbg_archive,
768 'gclient_env': { 768 'gclient_env': {
769 'GYP_DEFINES': 'clang=1', 769 'GYP_DEFINES': 'clang=1',
770 }}) 770 }})
(...skipping 1444 matching lines...) Expand 10 before | Expand all | Expand 10 after
2215 fromaddr=ActiveMaster.from_address, # Reply-To address 2215 fromaddr=ActiveMaster.from_address, # Reply-To address
2216 mode='failing', 2216 mode='failing',
2217 relayhost=config.Master.smtp, 2217 relayhost=config.Master.smtp,
2218 subject='Build failure on %(builder)s', 2218 subject='Build failure on %(builder)s',
2219 extraRecipients=[ 2219 extraRecipients=[
2220 'sebmarchand+pgofailure@google.com', 2220 'sebmarchand+pgofailure@google.com',
2221 'scottmg+pgofailure@google.com' 2221 'scottmg+pgofailure@google.com'
2222 ], 2222 ],
2223 sendToInterestedUsers=False, 2223 sendToInterestedUsers=False,
2224 builders=['Chromium Win PGO Builder'])) 2224 builders=['Chromium Win PGO Builder']))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698