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

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

Issue 472963003: WebRTC: Enable bot_update for standalone recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Only enable 3 trybots for now. Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux.json » ('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 # TODO(hinoka): Use logging. 6 # TODO(hinoka): Use logging.
7 7
8 import cStringIO 8 import cStringIO
9 import codecs 9 import codecs
10 import collections 10 import collections
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 RECOGNIZED_PATHS = { 205 RECOGNIZED_PATHS = {
206 # If SVN path matches key, the entire URL is rewritten to the Git url. 206 # If SVN path matches key, the entire URL is rewritten to the Git url.
207 '/chrome/trunk/src': 207 '/chrome/trunk/src':
208 CHROMIUM_SRC_URL, 208 CHROMIUM_SRC_URL,
209 '/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS': 209 '/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS':
210 CHROMIUM_GIT_HOST + '/chromium/deps/webrtc/webrtc.DEPS.git', 210 CHROMIUM_GIT_HOST + '/chromium/deps/webrtc/webrtc.DEPS.git',
211 '/svn/branches/bleeding_edge': 211 '/svn/branches/bleeding_edge':
212 CHROMIUM_GIT_HOST + '/v8/v8.git', 212 CHROMIUM_GIT_HOST + '/v8/v8.git',
213 '/chrome/trunk/src/tools/cros.DEPS': 213 '/chrome/trunk/src/tools/cros.DEPS':
214 CHROMIUM_GIT_HOST + '/chromium/src/tools/cros.DEPS.git', 214 CHROMIUM_GIT_HOST + '/chromium/src/tools/cros.DEPS.git',
215 '/webrtc/trunk':
216 CHROMIUM_GIT_HOST + '/external/webrtc.git',
215 } 217 }
216 RECOGNIZED_PATHS.update(internal_data.get('RECOGNIZED_PATHS', {})) 218 RECOGNIZED_PATHS.update(internal_data.get('RECOGNIZED_PATHS', {}))
217 219
218 ENABLED_MASTERS = [ 220 ENABLED_MASTERS = [
219 'bot_update.always_on', 221 'bot_update.always_on',
220 'chromium.chrome', 222 'chromium.chrome',
221 'chromium.chromedriver', 223 'chromium.chromedriver',
222 'chromium.chromiumos', 224 'chromium.chromiumos',
223 'chromium', 225 'chromium',
224 'chromium.fyi', 226 'chromium.fyi',
(...skipping 29 matching lines...) Expand all
254 'client.v8.branches': [ 256 'client.v8.branches': [
255 # Note, bot_update can't be activated on other builders of 257 # Note, bot_update can't be activated on other builders of
256 # client.v8.branches, as they're all pure svn based (non-chromium). 258 # client.v8.branches, as they're all pure svn based (non-chromium).
257 'Chromium ASAN (symbolized)', 259 'Chromium ASAN (symbolized)',
258 'Chromium ASAN - debug', 260 'Chromium ASAN - debug',
259 'Chromium ASAN arm64 (symbolized)', 261 'Chromium ASAN arm64 (symbolized)',
260 'Chromium ASAN arm64 - debug', 262 'Chromium ASAN arm64 - debug',
261 'Chromium Win SyzyASAN', 263 'Chromium Win SyzyASAN',
262 ], 264 ],
263 'tryserver.webrtc': [ 265 'tryserver.webrtc': [
264 'android_apk', 266 'linux',
265 'android_apk_rel', 267 'mac',
266 ], 268 'win',
269 ],
267 } 270 }
268 ENABLED_BUILDERS.update(internal_data.get('ENABLED_BUILDERS', {})) 271 ENABLED_BUILDERS.update(internal_data.get('ENABLED_BUILDERS', {}))
269 272
270 ENABLED_SLAVES = {} 273 ENABLED_SLAVES = {}
271 ENABLED_SLAVES.update(internal_data.get('ENABLED_SLAVES', {})) 274 ENABLED_SLAVES.update(internal_data.get('ENABLED_SLAVES', {}))
272 275
273 # Disabled filters get run AFTER enabled filters, so for example if a builder 276 # Disabled filters get run AFTER enabled filters, so for example if a builder
274 # config is enabled, but a bot on that builder is disabled, that bot will 277 # config is enabled, but a bot on that builder is disabled, that bot will
275 # be disabled. 278 # be disabled.
276 DISABLED_BUILDERS = {} 279 DISABLED_BUILDERS = {}
(...skipping 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 except Exception: 1663 except Exception:
1661 # Unexpected failure. 1664 # Unexpected failure.
1662 emit_flag(options.flag_file) 1665 emit_flag(options.flag_file)
1663 raise 1666 raise
1664 else: 1667 else:
1665 emit_flag(options.flag_file) 1668 emit_flag(options.flag_file)
1666 1669
1667 1670
1668 if __name__ == '__main__': 1671 if __name__ == '__main__':
1669 sys.exit(main()) 1672 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_linux.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698