| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from buildbot.process.properties import WithProperties | 5 from buildbot.process.properties import WithProperties |
| 6 | 6 |
| 7 from master import master_config | 7 from master import master_config |
| 8 from master import master_utils | 8 from master import master_utils |
| 9 from master.factory import remote_run_factory | 9 from master.factory import remote_run_factory |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 | 39 |
| 40 ################################################################################ | 40 ################################################################################ |
| 41 ## Release | 41 ## Release |
| 42 ################################################################################ | 42 ################################################################################ |
| 43 | 43 |
| 44 # | 44 # |
| 45 # Linux Rel Builder/Tester | 45 # Linux Rel Builder/Tester |
| 46 # | 46 # |
| 47 | 47 |
| 48 B('WebKit Linux Precise', 'f_webkit_linux_rel', scheduler='global_scheduler') | 48 B('WebKit Linux Trusty', 'f_webkit_linux_rel', scheduler='global_scheduler') |
| 49 F('f_webkit_linux_rel', m_remote_run_chromium_src('chromium')) | 49 F('f_webkit_linux_rel', m_remote_run_chromium_src('chromium')) |
| 50 | 50 |
| 51 B('WebKit Linux Trusty', 'f_webkit_linux_rel_trusty', | 51 B('WebKit Linux Trusty ASAN', 'f_webkit_linux_rel_asan', |
| 52 scheduler='global_scheduler') | |
| 53 F('f_webkit_linux_rel_trusty', m_remote_run_chromium_src('chromium')) | |
| 54 | |
| 55 B('WebKit Linux Precise ASAN', 'f_webkit_linux_rel_asan', | |
| 56 scheduler='global_scheduler', auto_reboot=True) | 52 scheduler='global_scheduler', auto_reboot=True) |
| 57 F('f_webkit_linux_rel_asan', m_remote_run_chromium_src('chromium')) | 53 F('f_webkit_linux_rel_asan', m_remote_run_chromium_src('chromium')) |
| 58 | 54 |
| 59 B('WebKit Linux Precise MSAN', 'f_webkit_linux_rel_msan', | 55 B('WebKit Linux Trusty MSAN', 'f_webkit_linux_rel_msan', |
| 60 scheduler='global_scheduler', auto_reboot=True) | 56 scheduler='global_scheduler', auto_reboot=True) |
| 61 F('f_webkit_linux_rel_msan', m_remote_run_chromium_src('chromium')) | 57 F('f_webkit_linux_rel_msan', m_remote_run_chromium_src('chromium')) |
| 62 | 58 |
| 63 B('WebKit Linux Precise Leak', 'f_webkit_linux_leak_rel', | 59 B('WebKit Linux Trusty Leak', 'f_webkit_linux_leak_rel', |
| 64 scheduler='global_scheduler', category='layout') | 60 scheduler='global_scheduler', category='layout') |
| 65 F('f_webkit_linux_leak_rel', m_remote_run_chromium_src('chromium')) | 61 F('f_webkit_linux_leak_rel', m_remote_run_chromium_src('chromium')) |
| 66 | 62 |
| 67 | 63 |
| 68 ################################################################################ | 64 ################################################################################ |
| 69 ## Debug | 65 ## Debug |
| 70 ################################################################################ | 66 ################################################################################ |
| 71 | 67 |
| 72 # | 68 # |
| 73 # Linux Dbg Webkit builders/testers | 69 # Linux Dbg Webkit builders/testers |
| 74 # | 70 # |
| 75 | 71 |
| 76 B('WebKit Linux Precise (dbg)', 'f_webkit_dbg_tests', | 72 B('WebKit Linux Trusty (dbg)', 'f_webkit_dbg_tests', |
| 77 scheduler='global_scheduler', auto_reboot=True) | 73 scheduler='global_scheduler', auto_reboot=True) |
| 78 F('f_webkit_dbg_tests', m_remote_run_chromium_src('chromium')) | 74 F('f_webkit_dbg_tests', m_remote_run_chromium_src('chromium')) |
| 79 | 75 |
| 80 | 76 |
| 81 def Update(_config, _active_master, c): | 77 def Update(_config, _active_master, c): |
| 82 return helper.Update(c) | 78 return helper.Update(c) |
| OLD | NEW |