1
#######################################################
2
# Be careful not to break the syntax of this file, or #
3
# refer to a team/project/series that doesn't exist, #
4
# as it will stop status.linaro.org from updating. #
6
# You can test if your changes break the syntax with #
8
#######################################################
15
# lp team # spec name match to show up in roadmap
17
'linaro-foundations': '',
18
'linaro-infrastructure': '',
19
'linaro-validation': '',
20
'linaro-kernel-wg': '',
22
'linaro-toolchain-wg': '',
23
'linaro-graphics-wg': '',
24
'linaro-multimedia-wg': '',
28
# The primary team to show at the top level
30
# any teams to recurse into
31
recursive_teams = ['linaro']
36
# contact points for data errors (regexps on spec name pattern)
38
'linaro.*graphics': ['jesse.barker@linaro.org', 'ilias.biris@linaro.org'],
39
'linaro.*toolchain': ['michael.hope@linaro.org', 'mounir.bsaibes@linaro.org'],
40
'linaro.*kernel': ['deepak.saxena@linaro.org', 'mounir.bsaibes@linaro.org'],
41
'kernel-.*': ['deepak.saxena@linaro.org', 'mounir.bsaibes@linaro.org'],
42
'linaro.*power': ['amit.kucheria@linaro.org', 'mounir.bsaibes@linaro.org'],
43
'linaro.*octo': ['loic.minier@linaro.org', 'ilias.biris@linaro.org'],
44
'linaro.*android': ['zach.pfeffer@linaro.org', 'david.zinman@linaro.org', 'fathi.boudra@linaro.org', 'tony.mansson@linaro.org'],
45
'android-.*': ['zach.pfeffer@linaro.org', 'david.zinman@linaro.org', 'fathi.boudra@linaro.org', 'tony.mansson@linaro.org'],
46
'linaro.*platforms': ['danilo.segan@linaro.org', 'paul.larson@linaro.org', 'ricardo.salveti@linaro.org', 'fathi.boudra@linaro.org', 'david.zinman@linaro.org'],
52
# override trend line start; keys are either 'team' or ('team', 'milestone');
53
# (team == "all" for global report)
56
'linaro-infrastructure': '80',
59
####################################
60
# Add extra projects to track here #
61
####################################
63
# project # series to look at, None for all series
65
'linaro-multimedia-speex': 'trunk',
66
'linaro-multimedia-ucm': 'trunk',
67
'linaro-multimedia-project': 'trunk',
68
'linaro-multimedia-testcontent': 'trunk',
69
'libjpeg-turbo': '1.2',
71
'linaro-graphics-misc': 'trunk',
72
'linaro-graphics-tests': 'trunk',
73
'linaro-graphics-dashboard': 'trunk',
74
'linaro-mm-sig': 'trunk',
75
'unity-gles': 'trunk',
76
'glcompbench': 'trunk',
78
'glmark2-extra': 'trunk',
83
'cortex-strings': 'trunk',
84
'binutils-linaro': 'trunk',
86
#'gcc-linaro-tracking': None,
88
'qemu-linaro': 'trunk',
90
'linaro-toolchain-misc': 'trunk',
91
'linaro-toolchain-benchmarks': 'trunk',
92
'linaro-toolchain-binaries': 'trunk',
95
'linux-linaro': 'devtrack',
97
'linaro-power-kernel': 'trunk',
98
'linaro-power-qa': 'trunk',
99
'linaro-powerdebug': 'trunk',
100
'linaro-powertop': 'trunk',
102
'linaro-ubuntu': 'trunk',
103
'u-boot-linaro': 'trunk',
105
'linaro-android': 'trunk',
107
'lava-android-test': 'trunk',
108
'lava-celery': 'trunk',
109
'lava-dashboard': 'trunk',
110
'lava-dashboard-tool': 'trunk',
111
'lava-dispatcher': 'trunk',
112
'lava-kernel-ci-views': 'trunk',
114
'lava-qatracker': 'trunk',
115
'lava-scheduler-tool': 'trunk',
116
'lava-scheduler': 'trunk',
117
'lava-server': 'trunk',
118
'lava-test': 'trunk',
119
'lava-tool': 'trunk',
120
'linaro-django-xmlrpc': 'trunk',
121
'linaro-python-dashboard-bundle': 'trunk',
122
'linaro-validation-misc': 'trunk',
124
'linaro-octo-armhf': 'trunk',
128
####################################################
129
# Infrastructure subprojects fetched directly from #
130
# linaro-infrastructure project group. #
131
####################################################
132
# XXX Danilo #903623: move this to workitem-tracker.
133
import urllib, simplejson, os.path
134
data = simplejson.loads(urllib.urlopen(
135
'https://api.launchpad.net/1.0/linaro-infrastructure/projects').read())
137
for product in data['entries']:
138
infra_projects[product['name']] = (
139
os.path.basename(product['development_focus_link']))
140
extra_projects.update(infra_projects)
142
# Ubuntu release to track
143
# Linaro probably should not need to track an Ubuntu release /mabac
146
# Linaro project to track
148
project_series = 'trunk'
151
# Mapping from project to TR regex.
152
# Group in regex is to pull out the "area" that the TR is in
154
'linaro': '^tr-([^-]+)',