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

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

Issue 2184603003: Move memory FYI slaves to memory full master and switch configs over. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Update expectations Created 4 years, 4 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
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 'chromium.fyi', 243 'chromium.fyi',
244 'chromium.goma', 244 'chromium.goma',
245 'chromium.gpu', 245 'chromium.gpu',
246 'chromium.gpu.fyi', 246 'chromium.gpu.fyi',
247 'chromium.infra', 247 'chromium.infra',
248 'chromium.infra.cron', 248 'chromium.infra.cron',
249 'chromium.linux', 249 'chromium.linux',
250 'chromium.lkgr', 250 'chromium.lkgr',
251 'chromium.mac', 251 'chromium.mac',
252 'chromium.memory', 252 'chromium.memory',
253 'chromium.memory.fyi', 253 'chromium.memory.full',
254 'chromium.perf', 254 'chromium.perf',
255 'chromium.perf.fyi', 255 'chromium.perf.fyi',
256 'chromium.swarm', 256 'chromium.swarm',
257 'chromium.webkit', 257 'chromium.webkit',
258 'chromium.webrtc', 258 'chromium.webrtc',
259 'chromium.webrtc.fyi', 259 'chromium.webrtc.fyi',
260 'chromium.win', 260 'chromium.win',
261 'client.catapult', 261 'client.catapult',
262 'client.drmemory', 262 'client.drmemory',
263 'client.mojo', 263 'client.mojo',
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1738 except Exception: 1738 except Exception:
1739 # Unexpected failure. 1739 # Unexpected failure.
1740 emit_flag(options.flag_file) 1740 emit_flag(options.flag_file)
1741 raise 1741 raise
1742 else: 1742 else:
1743 emit_flag(options.flag_file) 1743 emit_flag(options.flag_file)
1744 1744
1745 1745
1746 if __name__ == '__main__': 1746 if __name__ == '__main__':
1747 sys.exit(main()) 1747 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698