1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# The configuration matrix of our staging device testing
JENKINS = 'http://dev-jenkins.ubuntu-ci:8080/'
UTOPIC_MATRIX = [
{
'image-type': 'touch',
'statsd-key': 'ubuntu-ci.daily-image.staging',
'include-qa': True,
'dashboard-host': 'dashboard.ubuntu-ci',
'dashboard-port': '8080',
'dashboard-user': 'ci-bot',
'devices': [
{
'name': 'mako',
'slave-label': 'mako',
#'trigger_url': 'http://system-image.ubuntu.com/utopic-proposed/mako/index.json',
}
],
},
{
'image-type': 'touch_stable',
'statsd-key': 'ubuntu-ci.daily-image.staging',
'include-qa': True,
'dashboard-host': 'dashboard.ubuntu-ci',
'dashboard-port': '8080',
'dashboard-user': 'ci-bot',
'devices': [
{
'name': 'mako',
'slave-label': 'mako',
#'trigger_url': 'http://system-image.ubuntu.com/utopic-proposed/mako/index.json',
}
],
'IMAGE_OPT': 'export IMAGE_OPT="--bootstrap --developer-mode '
'--channel ubuntu-touch/staging-stable-proposed"'
},
]
MATRIX = {
'utopic': UTOPIC_MATRIX,
}
|