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

Side by Side Diff: infra/bots/recipe_modules/skia/ssh_devices.py

Issue 2198173002: Re-organize Skia recipes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix missing dependency 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
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6
7 import collections
8 import json
9
10
11 DEFAULT_PORT = '22'
12 DEFAULT_USER = 'chrome-bot'
13
14
15 SlaveInfo = collections.namedtuple('SlaveInfo',
16 'ssh_user ssh_host ssh_port')
17
18 SLAVE_INFO = {
19 'skiabot-shuttle-ubuntu12-003':
20 SlaveInfo('root', '192.168.1.123', DEFAULT_PORT),
21 'skiabot-shuttle-ubuntu12-004':
22 SlaveInfo('root', '192.168.1.134', DEFAULT_PORT),
23 'default':
24 SlaveInfo('nouser', 'noip', 'noport'),
25 }
26
27
28 if __name__ == '__main__':
29 print json.dumps(SLAVE_INFO) # pragma: no cover
30
OLDNEW
« no previous file with comments | « infra/bots/recipe_modules/skia/resources/upload_dm_results.py ('k') | infra/bots/recipe_modules/skia/valgrind_flavor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698