| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env 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 """Fetch the latest results for a pre-selected set of builders we care about. | 6 """Fetch the latest results for a pre-selected set of builders we care about. |
| 7 If we find a 'good' revision -- based on criteria explained below -- we | 7 If we find a 'good' revision -- based on criteria explained below -- we |
| 8 mark the revision as LKGR, and POST it to the LKGR server: | 8 mark the revision as LKGR, and POST it to the LKGR server: |
| 9 | 9 |
| 10 http://chromium-status.appspot.com/lkgr | 10 http://chromium-status.appspot.com/lkgr |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 ], | 119 ], |
| 120 'Win7 Tests (dbg)(6)': [ | 120 'Win7 Tests (dbg)(6)': [ |
| 121 'browser_tests', | 121 'browser_tests', |
| 122 ], | 122 ], |
| 123 'Chrome Frame Tests (ie8)': [ | 123 'Chrome Frame Tests (ie8)': [ |
| 124 'chrome_frame_unittests', | 124 'chrome_frame_unittests', |
| 125 ], | 125 ], |
| 126 # 'Interactive Tests (dbg)': [ | 126 # 'Interactive Tests (dbg)': [ |
| 127 # 'interactive_ui_tests', | 127 # 'interactive_ui_tests', |
| 128 # ], | 128 # ], |
| 129 'Win Aura': [ |
| 130 'ash_unittests', |
| 131 'aura_unittests', |
| 132 'browser_tests', |
| 133 'compile', |
| 134 'compositor_unittests', |
| 135 'content_browsertests', |
| 136 'content_unittests', |
| 137 'interactive_ui_tests', |
| 138 'unit_tests', |
| 139 'views_unittests', |
| 140 ], |
| 129 }, # chromium.win | 141 }, # chromium.win |
| 130 'chromium.mac': { | 142 'chromium.mac': { |
| 131 'Mac Builder (dbg)': [ | 143 'Mac Builder (dbg)': [ |
| 132 'compile', | 144 'compile', |
| 133 ], | 145 ], |
| 134 'Mac 10.6 Tests (dbg)(1)': [ | 146 'Mac 10.6 Tests (dbg)(1)': [ |
| 135 'browser_tests', | 147 'browser_tests', |
| 136 'cc_unittests', | 148 'cc_unittests', |
| 137 'googleurl_unittests', | 149 'googleurl_unittests', |
| 138 'ppapi_unittests', | 150 'ppapi_unittests', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 'nacl_integration', | 196 'nacl_integration', |
| 185 'ppapi_unittests', | 197 'ppapi_unittests', |
| 186 'printing_unittests', | 198 'printing_unittests', |
| 187 'remoting_unittests', | 199 'remoting_unittests', |
| 188 'sql_unittests', | 200 'sql_unittests', |
| 189 'sync_unit_tests', | 201 'sync_unit_tests', |
| 190 'ui_unittests', | 202 'ui_unittests', |
| 191 'unit_tests', | 203 'unit_tests', |
| 192 'webkit_compositor_bindings_unittests', | 204 'webkit_compositor_bindings_unittests', |
| 193 ], | 205 ], |
| 206 'Linux Aura': [ |
| 207 'aura_unittests', |
| 208 'base_unittests', |
| 209 'cacheinvalidation_unittests', |
| 210 'compile', |
| 211 'compositor_unittests', |
| 212 'content_browsertests', |
| 213 'content_unittests', |
| 214 'crypto_unittests', |
| 215 'device_unittests', |
| 216 'googleurl_unittests', |
| 217 'gpu_unittests', |
| 218 'ipc_tests', |
| 219 'jingle_unittests', |
| 220 'media_unittests', |
| 221 'net_unittests', |
| 222 'ppapi_unittests', |
| 223 'printing_unittests', |
| 224 'remoting_unittests', |
| 225 'sync_unit_tests', |
| 226 'ui_unittests', |
| 227 'unit_tests', |
| 228 'views_unittests', |
| 229 ], |
| 194 'Android Builder (dbg)': [ | 230 'Android Builder (dbg)': [ |
| 195 'build', | 231 'build', |
| 196 ], | 232 ], |
| 197 'Android Tests (dbg)': [ | 233 'Android Tests (dbg)': [ |
| 198 'build', | 234 'build', |
| 199 ], | 235 ], |
| 200 }, # chromium.linux | 236 }, # chromium.linux |
| 201 'chromium.chrome': { | 237 'chromium.chrome': { |
| 202 'Google Chrome Linux x64': [ # cycle time is ~14 mins as of 5/5/2012 | 238 'Google Chrome Linux x64': [ # cycle time is ~14 mins as of 5/5/2012 |
| 203 'compile', | 239 'compile', |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 for master in options.notify: | 523 for master in options.notify: |
| 488 NotifyMaster(master, candidate, options.dry) | 524 NotifyMaster(master, candidate, options.dry) |
| 489 else: | 525 else: |
| 490 VerbosePrint('No newer LKGR found than current %s' % lkgr) | 526 VerbosePrint('No newer LKGR found than current %s' % lkgr) |
| 491 VerbosePrint('-' * 80) | 527 VerbosePrint('-' * 80) |
| 492 | 528 |
| 493 return 0 | 529 return 0 |
| 494 | 530 |
| 495 if __name__ == '__main__': | 531 if __name__ == '__main__': |
| 496 sys.exit(main()) | 532 sys.exit(main()) |
| OLD | NEW |