| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 'chromium.win': { | 82 'chromium.win': { |
| 83 'Win Builder (dbg)': [ | 83 'Win Builder (dbg)': [ |
| 84 'compile', | 84 'compile', |
| 85 ], | 85 ], |
| 86 'Win7 Tests (dbg)(1)': [ | 86 'Win7 Tests (dbg)(1)': [ |
| 87 'base_unittests', | 87 'base_unittests', |
| 88 'cacheinvalidation_unittests', | 88 'cacheinvalidation_unittests', |
| 89 'cc_unittests', | 89 'cc_unittests', |
| 90 'check_deps', | 90 'check_deps', |
| 91 'chromedriver2_unittests', | 91 'chromedriver2_unittests', |
| 92 'components_unittests', |
| 92 'content_unittests', | 93 'content_unittests', |
| 93 'courgette_unittests', | 94 'courgette_unittests', |
| 94 'crypto_unittests', | 95 'crypto_unittests', |
| 95 'googleurl_unittests', | 96 'googleurl_unittests', |
| 96 'installer_util_unittests', | 97 'installer_util_unittests', |
| 97 'ipc_tests', | 98 'ipc_tests', |
| 98 'jingle_unittests', | 99 'jingle_unittests', |
| 99 'media_unittests', | 100 'media_unittests', |
| 100 'ppapi_unittests', | 101 'ppapi_unittests', |
| 101 'printing_unittests', | 102 'printing_unittests', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'browser_tests', | 168 'browser_tests', |
| 168 'check_deps', | 169 'check_deps', |
| 169 'media_unittests', | 170 'media_unittests', |
| 170 'net_unittests', | 171 'net_unittests', |
| 171 ], | 172 ], |
| 172 'Mac 10.6 Tests (dbg)(3)': [ | 173 'Mac 10.6 Tests (dbg)(3)': [ |
| 173 'base_unittests', 'browser_tests', 'interactive_ui_tests', | 174 'base_unittests', 'browser_tests', 'interactive_ui_tests', |
| 174 ], | 175 ], |
| 175 'Mac 10.6 Tests (dbg)(4)': [ | 176 'Mac 10.6 Tests (dbg)(4)': [ |
| 176 'browser_tests', | 177 'browser_tests', |
| 178 'components_unittests', |
| 177 'content_unittests', | 179 'content_unittests', |
| 178 'ipc_tests', | 180 'ipc_tests', |
| 179 'sql_unittests', | 181 'sql_unittests', |
| 180 'sync_unit_tests', | 182 'sync_unit_tests', |
| 181 'ui_unittests', | 183 'ui_unittests', |
| 182 'unit_tests', | 184 'unit_tests', |
| 183 ], | 185 ], |
| 184 'iOS Device': [ | 186 'iOS Device': [ |
| 185 'compile', | 187 'compile', |
| 186 ], | 188 ], |
| (...skipping 20 matching lines...) Expand all Loading... |
| 207 ], | 209 ], |
| 208 'Linux Tests (dbg)(1)': [ | 210 'Linux Tests (dbg)(1)': [ |
| 209 'browser_tests', | 211 'browser_tests', |
| 210 'net_unittests', | 212 'net_unittests', |
| 211 ], | 213 ], |
| 212 'Linux Tests (dbg)(2)': [ | 214 'Linux Tests (dbg)(2)': [ |
| 213 'base_unittests', | 215 'base_unittests', |
| 214 'cacheinvalidation_unittests', | 216 'cacheinvalidation_unittests', |
| 215 'cc_unittests', | 217 'cc_unittests', |
| 216 'chromedriver2_unittests', | 218 'chromedriver2_unittests', |
| 219 'components_unittests', |
| 217 'content_unittests', | 220 'content_unittests', |
| 218 'googleurl_unittests', | 221 'googleurl_unittests', |
| 219 'interactive_ui_tests', | 222 'interactive_ui_tests', |
| 220 'ipc_tests', | 223 'ipc_tests', |
| 221 'jingle_unittests', | 224 'jingle_unittests', |
| 222 'media_unittests', | 225 'media_unittests', |
| 223 'nacl_integration', | 226 'nacl_integration', |
| 224 'ppapi_unittests', | 227 'ppapi_unittests', |
| 225 'printing_unittests', | 228 'printing_unittests', |
| 226 'remoting_unittests', | 229 'remoting_unittests', |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 for master in options.notify: | 596 for master in options.notify: |
| 594 NotifyMaster(master, candidate, options.dry) | 597 NotifyMaster(master, candidate, options.dry) |
| 595 else: | 598 else: |
| 596 VerbosePrint('No newer LKGR found than current %s' % lkgr) | 599 VerbosePrint('No newer LKGR found than current %s' % lkgr) |
| 597 VerbosePrint('-' * 80) | 600 VerbosePrint('-' * 80) |
| 598 | 601 |
| 599 return 0 | 602 return 0 |
| 600 | 603 |
| 601 if __name__ == '__main__': | 604 if __name__ == '__main__': |
| 602 sys.exit(main()) | 605 sys.exit(main()) |
| OLD | NEW |