| 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 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 | 878 |
| 879 f_chromium_win_clang = win_out().ChromiumFactory( | 879 f_chromium_win_clang = win_out().ChromiumFactory( |
| 880 slave_type='BuilderTester', | 880 slave_type='BuilderTester', |
| 881 target='Release', | 881 target='Release', |
| 882 tests=win_clang_tests, | 882 tests=win_clang_tests, |
| 883 # TODO(hans): Build chromium_builder_tests when LLVM PR11170 is fixed. | 883 # TODO(hans): Build chromium_builder_tests when LLVM PR11170 is fixed. |
| 884 options=['--build-tool=ninja', '--'] + win_clang_tests, | 884 options=['--build-tool=ninja', '--'] + win_clang_tests, |
| 885 factory_properties={ | 885 factory_properties={ |
| 886 'gclient_env': { | 886 'gclient_env': { |
| 887 'GYP_DEFINES': 'clang=1', | 887 'GYP_DEFINES': 'clang=1', |
| 888 'LLVM_WIN_REVISION': 'HEAD', |
| 888 }}) | 889 }}) |
| 889 | 890 |
| 890 f_chromium_win_clang_dbg = win_out().ChromiumFactory( | 891 f_chromium_win_clang_dbg = win_out().ChromiumFactory( |
| 891 slave_type='BuilderTester', | 892 slave_type='BuilderTester', |
| 892 target='Debug', | 893 target='Debug', |
| 893 tests=win_clang_tests, | 894 tests=win_clang_tests, |
| 894 options=['--build-tool=ninja', '--'] + win_clang_tests, | 895 options=['--build-tool=ninja', '--'] + win_clang_tests, |
| 895 factory_properties={ | 896 factory_properties={ |
| 896 'gclient_env': { | 897 'gclient_env': { |
| 897 'GYP_DEFINES': 'clang=1 component=static_library', | 898 'GYP_DEFINES': 'clang=1 component=static_library', |
| 899 'LLVM_WIN_REVISION': 'HEAD', |
| 898 }}) | 900 }}) |
| 899 | 901 |
| 900 f_chromium_win_clang_asan = win_out().ChromiumFactory( | 902 f_chromium_win_clang_asan = win_out().ChromiumFactory( |
| 901 slave_type='BuilderTester', | 903 slave_type='BuilderTester', |
| 902 target='Release', | 904 target='Release', |
| 903 tests=win_clang_tests, | 905 tests=win_clang_tests, |
| 904 options=['--build-tool=ninja', '--'] + win_clang_tests, | 906 options=['--build-tool=ninja', '--'] + win_clang_tests, |
| 905 factory_properties={ | 907 factory_properties={ |
| 906 'asan': True, | 908 'asan': True, |
| 907 'gclient_env': { | 909 'gclient_env': { |
| 908 'GYP_DEFINES': 'clang=1 asan=1 component=static_library disable_nacl=1', | 910 'GYP_DEFINES': 'clang=1 asan=1 component=static_library disable_nacl=1', |
| 911 'LLVM_WIN_REVISION': 'HEAD', |
| 909 }}) | 912 }}) |
| 910 | 913 |
| 911 f_chromium_win_ninja_shared_2013_dbg = win_out().ChromiumFactory( | 914 f_chromium_win_ninja_shared_2013_dbg = win_out().ChromiumFactory( |
| 912 slave_type='BuilderTester', | 915 slave_type='BuilderTester', |
| 913 options=['--build-tool=ninja', 'chromium_builder_tests'], | 916 options=['--build-tool=ninja', 'chromium_builder_tests'], |
| 914 tests=tests_win_1, | 917 tests=tests_win_1, |
| 915 target='Debug', | 918 target='Debug', |
| 916 factory_properties={ | 919 factory_properties={ |
| 917 'gclient_env': { | 920 'gclient_env': { |
| 918 'GYP_DEFINES': 'component=shared_library fastbuild=1', | 921 'GYP_DEFINES': 'component=shared_library fastbuild=1', |
| (...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2308 | 2311 |
| 2309 c['status'].append(MailNotifier( | 2312 c['status'].append(MailNotifier( |
| 2310 fromaddr='ukai@chromium.org', # Reply-To address | 2313 fromaddr='ukai@chromium.org', # Reply-To address |
| 2311 mode='failing', | 2314 mode='failing', |
| 2312 categories=['goma'], | 2315 categories=['goma'], |
| 2313 relayhost=config.Master.smtp, | 2316 relayhost=config.Master.smtp, |
| 2314 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2317 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2315 'on %(builder)s', | 2318 'on %(builder)s', |
| 2316 extraRecipients=['goma+alert@google.com'], | 2319 extraRecipients=['goma+alert@google.com'], |
| 2317 sendToInterestedUsers=False)) | 2320 sendToInterestedUsers=False)) |
| OLD | NEW |