~lool/launchpad-work-items-tracker/drop-mm

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
130
131
132
133
134
135
#######################################################
# 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.11',
# multimedia
    'linaro-multimedia-speex': 'trunk',
    'linaro-multimedia-ucm': 'trunk',
    'linaro-multimedia-project': 'trunk',
    'linaro-multimedia-testcontent': 'trunk',
    'libjpeg-turbo': '1.2',
# graphics
    'linaro-graphics-misc': 'trunk',
    'linaro-graphics-tests': 'trunk',
    'linaro-graphics-dashboard': 'trunk',
    'linaro-mm-sig': 'trunk',
    'unity-gles': 'trunk',
    'glcompbench': 'trunk',
    'glmark2': 'trunk',
    'glmark2-extra': 'trunk',
    'glproxy': 'trunk',
    'libmatrix': 'trunk',
    'smartt': '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.11',
    'linaro-toolchain-misc': 'trunk',
    'linaro-toolchain-benchmarks': 'trunk',
    #'tcwg-web': None,
# kernel
    'linux-linaro': '11.11',
    'u-boot-linaro': '11.11',
# power management
    'linaro-power-kernel': '2011',
    'linaro-power-qa': '2011',
    'linaro-powerdebug': 2011,
    'linaro-powertop': 2011,
# dev platform
    'linaro-ubuntu': '11.11',
# android
    'linaro-android': '11.11',
# infrastructure
    #'linaro-infrastructure': None,
    'linaro-ci': 'engineering',
    'linaro-image-tools': '11.11',
    'svammel': 'trunk',
# validation
    'lava-android-test': 'linaro-11.11',
    'lava-dashboard': 'linaro-11.11',
    'lava-dashboard-tool': 'linaro-11.11',
    'lava-dispatcher': 'linaro-11.11',
    'lava-lab': 'linaro-11.11',
    'lava-qatracker': 'linaro-11.11',
    'lava-scheduler-tool': 'linaro-11.11',
    'lava-scheduler': 'linaro-11.11',
    'lava-server': 'linaro-11.11',
    'lava-test': 'linaro-11.11',
    'lava-tool': 'linaro-11.11',
    'linaro-django-xmlrpc': 'linaro-11.11',
    'linaro-python-dashboard-bundle': 'linaro-11.11',
    'linaro-validation-misc': 'linaro-11.11',
# 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-([^-]+)',
}