OLD | NEW |
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 Loading... |
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 Loading... |
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'])) |
OLD | NEW |