| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'sql_unittests', | 146 'sql_unittests', |
| 147 'sync_unit_tests', | 147 'sync_unit_tests', |
| 148 'ui_tests', | 148 'ui_tests', |
| 149 'unit_tests', | 149 'unit_tests', |
| 150 ], | 150 ], |
| 151 'Linux Builder (dbg)': [ | 151 'Linux Builder (dbg)': [ |
| 152 'compile', | 152 'compile', |
| 153 ], | 153 ], |
| 154 'Linux Tests (dbg)(1)': [ | 154 'Linux Tests (dbg)(1)': [ |
| 155 'check_deps', | 155 'check_deps', |
| 156 'check_licenses', | |
| 157 'browser_tests', | 156 'browser_tests', |
| 158 'net_unittests', | 157 'net_unittests', |
| 159 ], | 158 ], |
| 160 'Linux Tests (dbg)(2)': [ | 159 'Linux Tests (dbg)(2)': [ |
| 161 'ui_tests', | 160 'ui_tests', |
| 162 'content_unittests', | 161 'content_unittests', |
| 163 'ipc_tests', | 162 'ipc_tests', |
| 164 'sync_unit_tests', | 163 'sync_unit_tests', |
| 165 'unit_tests', | 164 'unit_tests', |
| 166 'sql_unittests', | 165 'sql_unittests', |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 for master in options.notify: | 421 for master in options.notify: |
| 423 NotifyMaster(master, candidate, options.dry) | 422 NotifyMaster(master, candidate, options.dry) |
| 424 else: | 423 else: |
| 425 VerbosePrint('No newer LKGR found than current %s' % lkgr) | 424 VerbosePrint('No newer LKGR found than current %s' % lkgr) |
| 426 VerbosePrint('-' * 80) | 425 VerbosePrint('-' * 80) |
| 427 | 426 |
| 428 return 0 | 427 return 0 |
| 429 | 428 |
| 430 if __name__ == '__main__': | 429 if __name__ == '__main__': |
| 431 sys.exit(main()) | 430 sys.exit(main()) |
| OLD | NEW |