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

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

Issue 1414053007: add receipes for goma staging (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 1 month 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/chromium/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 # 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'client.nacl.ports', 256 'client.nacl.ports',
257 'client.nacl.sdk', 257 'client.nacl.sdk',
258 'client.nacl.toolchain', 258 'client.nacl.toolchain',
259 'client.skia', 259 'client.skia',
260 'client.skia.fyi', 260 'client.skia.fyi',
261 'client.v8', 261 'client.v8',
262 'client.v8.branches', 262 'client.v8.branches',
263 'client.v8.fyi', 263 'client.v8.fyi',
264 'client.webrtc', 264 'client.webrtc',
265 'client.webrtc.fyi', 265 'client.webrtc.fyi',
266 'goma',
266 'tryserver.blink', 267 'tryserver.blink',
267 'tryserver.client.catapult', 268 'tryserver.client.catapult',
268 'tryserver.client.mojo', 269 'tryserver.client.mojo',
269 'tryserver.chromium.angle', 270 'tryserver.chromium.angle',
270 'tryserver.chromium.linux', 271 'tryserver.chromium.linux',
271 'tryserver.chromium.mac', 272 'tryserver.chromium.mac',
272 'tryserver.chromium.perf', 273 'tryserver.chromium.perf',
273 'tryserver.chromium.win', 274 'tryserver.chromium.win',
274 'tryserver.infra', 275 'tryserver.infra',
275 'tryserver.nacl', 276 'tryserver.nacl',
(...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1702 except Exception: 1703 except Exception:
1703 # Unexpected failure. 1704 # Unexpected failure.
1704 emit_flag(options.flag_file) 1705 emit_flag(options.flag_file)
1705 raise 1706 raise
1706 else: 1707 else:
1707 emit_flag(options.flag_file) 1708 emit_flag(options.flag_file)
1708 1709
1709 1710
1710 if __name__ == '__main__': 1711 if __name__ == '__main__':
1711 sys.exit(main()) 1712 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698