| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 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 import codecs | 6 import codecs |
| 7 import copy | 7 import copy |
| 8 import cStringIO | 8 import cStringIO |
| 9 import ctypes | 9 import ctypes |
| 10 import json | 10 import json |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 # bots that have mixed configs. | 115 # bots that have mixed configs. |
| 116 'chromium.fyi': [ | 116 'chromium.fyi': [ |
| 117 'build1-m1', # Chromium Builder / Chromium Builder (dbg) | 117 'build1-m1', # Chromium Builder / Chromium Builder (dbg) |
| 118 'vm928-m1', # Chromium Linux Buildrunner | 118 'vm928-m1', # Chromium Linux Buildrunner |
| 119 'vm859-m1', # Chromium Linux Redux | 119 'vm859-m1', # Chromium Linux Redux |
| 120 'vm933-m1', # ChromiumOS Linux Tests | 120 'vm933-m1', # ChromiumOS Linux Tests |
| 121 ], | 121 ], |
| 122 | 122 |
| 123 # Tryserver bots need to be enabled on a bot basis to make sure checkouts | 123 # Tryserver bots need to be enabled on a bot basis to make sure checkouts |
| 124 # on the same bot do not conflict. | 124 # on the same bot do not conflict. |
| 125 'tryserver.chromium': ['slave%d-c4' % i for i in range(250, 256)], | 125 'tryserver.chromium': ['slave%d-c4' % i for i in range(250, 300)], |
| 126 } | 126 } |
| 127 | 127 |
| 128 # Disabled filters get run AFTER enabled filters, so for example if a builder | 128 # Disabled filters get run AFTER enabled filters, so for example if a builder |
| 129 # config is enabled, but a bot on that builder is disabled, that bot will | 129 # config is enabled, but a bot on that builder is disabled, that bot will |
| 130 # be disabled. | 130 # be disabled. |
| 131 DISABLED_BUILDERS = {} | 131 DISABLED_BUILDERS = {} |
| 132 DISABLED_SLAVES = {} | 132 DISABLED_SLAVES = {} |
| 133 | 133 |
| 134 # How many times to retry failed subprocess calls. | 134 # How many times to retry failed subprocess calls. |
| 135 RETRIES = 3 | 135 RETRIES = 3 |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 root=options.root, | 868 root=options.root, |
| 869 step_text=step_text, | 869 step_text=step_text, |
| 870 properties=got_revisions) | 870 properties=got_revisions) |
| 871 else: | 871 else: |
| 872 # If we're not on recipes, tell annotator about our got_revisions. | 872 # If we're not on recipes, tell annotator about our got_revisions. |
| 873 emit_properties(got_revisions) | 873 emit_properties(got_revisions) |
| 874 | 874 |
| 875 | 875 |
| 876 if __name__ == '__main__': | 876 if __name__ == '__main__': |
| 877 sys.exit(main()) | 877 sys.exit(main()) |
| OLD | NEW |