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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#######################################################
# Be careful not to break the syntax of this file, or #
# refer to a team/project/series that doesn't exist, #
# as it will stop status.linaro.org from updating. #
# #
# You can test if your changes break the syntax with #
# pyflakes <file> #
#######################################################
##################
# Teams to track #
##################
teams = {
# lp team # spec name match to show up in roadmap
'linaro': '',
'linaro-foundations': '',
'linaro-infrastructure': '',
'linaro-validation': '',
'linaro-kernel-wg': '',
'linaro-pm-wg': '',
'linaro-toolchain-wg': '',
'linaro-graphics-wg': '',
'linaro-multimedia-wg': '',
'linaro-android': '',
}
# The primary team to show at the top level
primary_team="linaro"
# any teams to recurse into
recursive_teams = ['linaro']
################
# Error emails #
################
# contact points for data errors (regexps on spec name pattern)
error_contact = {
'linaro.*graphics': ['jesse.barker@linaro.org', 'ilias.biris@linaro.org'],
'linaro.*toolchain': ['michael.hope@linaro.org', 'mounir.bsaibes@linaro.org'],
'linaro.*kernel': ['deepak.saxena@linaro.org', 'mounir.bsaibes@linaro.org'],
'linaro.*power': ['amit.kucheria@linaro.org', 'mounir.bsaibes@linaro.org'],
'linaro.*octo': ['loic.minier@linaro.org', 'ilias.biris@linaro.org'],
'linaro.*android': ['zach.pfeffer@linaro.org', 'david.zinman@linaro.org', 'fathi.boudra@linaro.org', 'tony.mansson@linaro.org'],
'linaro.*platforms': ['danilo.segan@linaro.org', 'paul.larson@linaro.org', 'ricardo.salveti@linaro.org', 'fathi.boudra@linaro.org', 'david.zinman@linaro.org'],
}
###############
# Trend lines #
###############
# override trend line start; keys are either 'team' or ('team', 'milestone');
# (team == "all" for global report)
trend_start = {
'linaro': '1200',
'linaro-infrastructure': '80',
}
####################################
# Add extra projects to track here #
####################################
extra_projects = {
# project # series to look at, None for all series
'linaro': '11.12',
# multimedia
'linaro-multimedia-project': '2011.12',
'libjpeg-turbo': '1.2',
'smartt': 'trunk',
# graphics
'linaro-graphics-misc': '2011.12',
'linaro-mm-sig': '2011.12',
'unity-gles': '2011.12',
'glcompbench': '2011.12',
'glmark2': '2011.12',
'glproxy': 'trunk',
'libmatrix': 'trunk',
# toolchain
'cortex-strings': 'trunk',
'binutils-linaro': 'trunk',
'gcc-linaro': '4.6',
#'gcc-linaro-tracking': None,
'gdb-linaro': '7.3',
'qemu-linaro': 'trunk',
'cbuild': '11.12',
'linaro-toolchain-misc': 'trunk',
'linaro-toolchain-benchmarks': 'trunk',
#'tcwg-web': None,
# kernel
'linux-linaro': '11.12',
'u-boot-linaro': '11.12',
# power management
'linaro-power-kernel': '2011',
'linaro-power-qa': '2011',
'linaro-powerdebug': 2011,
'linaro-powertop': 2011,
# dev platform
'linaro-ubuntu': '11.12',
# android
'linaro-android': '11.12',
# infrastructure
#'linaro-infrastructure': None,
'linaro-ci': 'engineering',
'linaro-image-tools': '11.12',
'svammel': 'trunk',
# validation
'lava-android-test': 'linaro-11.12',
'lava-dashboard': 'linaro-11.12',
'lava-dashboard-tool': 'linaro-11.12',
'lava-dispatcher': 'linaro-11.12',
'lava-lab': 'linaro-11.12',
'lava-qatracker': 'linaro-11.12',
'lava-scheduler-tool': 'linaro-11.12',
'lava-scheduler': 'linaro-11.12',
'lava-server': 'linaro-11.12',
'lava-test': 'linaro-11.12',
'lava-tool': 'linaro-11.12',
'linaro-django-xmlrpc': 'linaro-11.12',
'linaro-python-dashboard-bundle': 'linaro-11.12',
'linaro-validation-misc': 'linaro-11.12',
# octo
'linaro-octo-armhf': 'trunk',
}
# Ubuntu release to track
release = 'oneiric'
# Mapping from project to TR regex.
# Group in regex is to pull out the "area" that the TR is in
spec_groups = {
'linaro': '^tr-([^-]+)',
}
|