| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 master import master_config | 5 from master import master_config |
| 6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
| 7 | 7 |
| 8 defaults = {} | 8 defaults = {} |
| 9 | 9 |
| 10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 # Main release scheduler for webkit | 25 # Main release scheduler for webkit |
| 26 # | 26 # |
| 27 S('s6_webkit_rel', branch='trunk', treeStableTimer=60) | 27 S('s6_webkit_rel', branch='trunk', treeStableTimer=60) |
| 28 | 28 |
| 29 # | 29 # |
| 30 # Linux Rel Builder/Tester | 30 # Linux Rel Builder/Tester |
| 31 # | 31 # |
| 32 B('Webkit Linux', 'f_webkit_linux_rel', scheduler='s6_webkit_rel', | 32 B('Webkit Linux', 'f_webkit_linux_rel', scheduler='s6_webkit_rel', |
| 33 auto_reboot=True) | 33 auto_reboot=True) |
| 34 F('f_webkit_linux_rel', linux().ChromiumWebkitLatestFactory( | 34 F('f_webkit_linux_rel', linux().ChromiumWebkitLatestFactory( |
| 35 tests=['test_shell', 'webkit', 'webkit_gpu', 'webkit_unit'], | 35 tests=['test_shell', 'webkit_lint', 'webkit', 'webkit_gpu', 'webkit_unit'], |
| 36 options=['--compiler=goma', 'test_shell', 'test_shell_tests', | 36 options=['--compiler=goma', 'test_shell', 'test_shell_tests', |
| 37 'webkit_unit_tests', 'DumpRenderTree'], | 37 'webkit_unit_tests', 'DumpRenderTree'], |
| 38 factory_properties={'archive_webkit_results': True, | 38 factory_properties={'archive_webkit_results': True, |
| 39 'test_results_server': 'test-results.appspot.com'})) | 39 'test_results_server': 'test-results.appspot.com'})) |
| 40 | 40 |
| 41 B('Webkit Linux 32', 'f_webkit_linux_rel', scheduler='s6_webkit_rel', | 41 B('Webkit Linux 32', 'f_webkit_linux_rel', scheduler='s6_webkit_rel', |
| 42 auto_reboot=True) | 42 auto_reboot=True) |
| 43 | 43 |
| 44 ################################################################################ | 44 ################################################################################ |
| 45 ## Debug | 45 ## Debug |
| 46 ################################################################################ | 46 ################################################################################ |
| 47 | 47 |
| 48 # | 48 # |
| 49 # Main debug scheduler for webkit | 49 # Main debug scheduler for webkit |
| 50 # | 50 # |
| 51 S('s6_webkit_dbg', branch='trunk', treeStableTimer=60) | 51 S('s6_webkit_dbg', branch='trunk', treeStableTimer=60) |
| 52 | 52 |
| 53 # | 53 # |
| 54 # Linux Dbg Webkit builders/testers | 54 # Linux Dbg Webkit builders/testers |
| 55 # | 55 # |
| 56 | 56 |
| 57 B('Webkit Linux (dbg)', 'f_webkit_dbg_tests', scheduler='s6_webkit_dbg') | 57 B('Webkit Linux (dbg)', 'f_webkit_dbg_tests', scheduler='s6_webkit_dbg') |
| 58 F('f_webkit_dbg_tests', linux().ChromiumWebkitLatestFactory( | 58 F('f_webkit_dbg_tests', linux().ChromiumWebkitLatestFactory( |
| 59 target='Debug', | 59 target='Debug', |
| 60 tests=['test_shell', 'webkit', 'webkit_gpu', 'webkit_unit'], | 60 tests=['test_shell', 'webkit_lint', 'webkit', 'webkit_gpu', 'webkit_unit'], |
| 61 options=['--compiler=goma', 'test_shell', 'test_shell_tests', | 61 options=['--compiler=goma', 'test_shell', 'test_shell_tests', |
| 62 'webkit_unit_tests', 'DumpRenderTree'], | 62 'webkit_unit_tests', 'DumpRenderTree'], |
| 63 factory_properties={'archive_webkit_results': True, | 63 factory_properties={'archive_webkit_results': True, |
| 64 'test_results_server': 'test-results.appspot.com'})) | 64 'test_results_server': 'test-results.appspot.com'})) |
| 65 | 65 |
| 66 def Update(config, active_master, c): | 66 def Update(config, active_master, c): |
| 67 return helper.Update(c) | 67 return helper.Update(c) |
| OLD | NEW |