~pwlars/ubuntu-test-cases/auto-offline-devices

« back to all changes in this revision

Viewing changes to jenkins/production.py

  • Committer: paul.larson at canonical
  • Date: 2014-09-25 15:12:03 UTC
  • mfrom: (302.1.1 touch)
  • Revision ID: paul.larson@canonical.com-20140925151203-f4m4a1cef077mx27
To reinstate the workaround to find the session with sudo

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
           % (channel, device)
9
9
 
10
10
 
11
 
TRUSTY_MATRIX = [
 
11
UTOPIC_MATRIX = [
12
12
    {
13
13
        'image-type': 'touch',
14
 
        'include-qa': True,
15
 
        'dashboard-host': 'ci.ubuntu.com',
16
 
        'dashboard-port': '80',
17
 
        'dashboard-user': 'doanac',
18
 
        'devices': [
19
 
            {
20
 
                'name': 'mako',
21
 
                'slave-label': 'daily-mako',
22
 
                'trigger_url': _url('trusty-proposed', 'mako'),
23
 
            },
24
 
            {
25
 
                'name': 'flo',
26
 
                'slave-label': 'daily-flo',
27
 
                'trigger_url': _url('trusty-proposed', 'flo'),
28
 
            },
29
 
            {
30
 
                'name': 'manta',
31
 
                'slave-label': 'daily-manta',
32
 
                'trigger_url': _url('trusty-proposed', 'manta'),
33
 
            },
34
 
        ],
 
14
        'statsd-key': 'ubuntu-ci.daily-image.production',
 
15
        'include-qa': True,
 
16
        'dashboard-host': 'ci.ubuntu.com',
 
17
        'dashboard-port': '80',
 
18
        'dashboard-user': 'uci-bot',
 
19
        'devices': [
 
20
            {
 
21
                'name': 'mako',
 
22
                'slave-label': 'daily-mako',
 
23
                'trigger_url': _url('devel-proposed', 'mako'),
 
24
                'num-workers': 3,
 
25
            },
 
26
            {
 
27
                'name': 'flo',
 
28
                'slave-label': 'daily-flo',
 
29
                'trigger_url': _url('devel-proposed', 'flo'),
 
30
                'num-workers': 2,
 
31
            },
 
32
            {
 
33
                'name': 'manta',
 
34
                'slave-label': 'daily-manta',
 
35
                'trigger_url': _url('devel-proposed', 'manta'),
 
36
                'num-workers': 2,
 
37
            },
 
38
        ],
 
39
    },
 
40
    {
 
41
        'image-type': 'touch_stable',
 
42
        'statsd-key': 'ubuntu-ci.daily-image.production',
 
43
        'include-qa': True,
 
44
        'dashboard-host': 'ci.ubuntu.com',
 
45
        'dashboard-port': '80',
 
46
        'dashboard-user': 'uci-bot',
 
47
        'devices': [
 
48
            {
 
49
                'name': 'mako',
 
50
                'slave-label': 'daily-mako',
 
51
                'trigger_url': _url('ubuntu-rtm/14.09-proposed', 'mako'),
 
52
                'num-workers': 3,
 
53
            },
 
54
            {
 
55
                'name': 'flo',
 
56
                'slave-label': 'daily-flo',
 
57
                'trigger_url': _url('ubuntu-rtm/14.09-proposed', 'flo'),
 
58
                'num-workers': 2,
 
59
            },
 
60
            {
 
61
                'name': 'manta',
 
62
                'slave-label': 'daily-manta',
 
63
                'trigger_url': _url('ubuntu-rtm/14.09-proposed', 'manta'),
 
64
                'num-workers': 2,
 
65
            },
 
66
        ],
 
67
        'IMAGE_OPT': 'export IMAGE_OPT="--bootstrap --developer-mode '
 
68
                     '--channel ubuntu-touch/ubuntu-rtm/14.09-proposed"'
35
69
    },
36
70
    {
37
71
        'image-type': 'touch_custom',
 
72
        'statsd-key': 'ubuntu-ci.daily-image.production',
38
73
        'include-qa': False,
39
74
        'dashboard-host': 'ci.ubuntu.com',
40
75
        'dashboard-port': '80',
41
 
        'dashboard-user': 'doanac',
 
76
        'dashboard-user': 'uci-bot',
42
77
        'devices': [
43
78
            {
44
79
                'name': 'mako',
45
80
                'slave-label': 'daily-mako',
46
 
                'trigger_url': _url('trusty-proposed-customized', 'mako'),
 
81
                'trigger_url': _url('utopic-proposed-customized', 'mako'),
47
82
            },
48
83
        ],
49
 
        'IMAGE_OPT': 'export IMAGE_OPT="--bootstrap '
50
 
                     '--channel trusty-proposed-customized"'
 
84
        'IMAGE_OPT': 'export IMAGE_OPT="--bootstrap --developer-mode '
 
85
                     '--channel ubuntu-touch/utopic-proposed-customized"'
51
86
    },
52
87
]
53
88
 
54
89
 
55
90
MATRIX = {
56
 
    'trusty': TRUSTY_MATRIX,
 
91
    'utopic': UTOPIC_MATRIX,
57
92
}