Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: scripts/slave/bot_update.py

Issue 247063005: Turn bot_update on for slave[256:300] (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: s/299/300/ Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/bot_update/api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/bot_update/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698