зеркало из https://github.com/mozilla/treeherder.git
Merge pull request #297 from ahal/code_coverage_platform_name
Bug 1056236 - Add a new code coverage build type
This commit is contained in:
Коммит
84a9f8c1a7
|
@ -553,6 +553,28 @@ buildernames = [
|
|||
'os': 'win',
|
||||
'os_platform': 'mulet-win32',
|
||||
'vm': False}}),
|
||||
('Linux x86_64 Code Coverage cedar build',
|
||||
{'build_type': 'cc',
|
||||
'job_type': 'build',
|
||||
'name': {'group_name': 'unknown',
|
||||
'group_symbol': '?',
|
||||
'name': 'Build',
|
||||
'job_symbol': 'B'},
|
||||
'platform': {'arch': 'x86_64',
|
||||
'os': 'linux',
|
||||
'os_platform': 'linux64',
|
||||
'vm': False}}),
|
||||
('Ubuntu Code Coverage VM 12.04 x64 cedar opt test web-platform-tests-2',
|
||||
{'build_type': 'cc',
|
||||
'job_type': 'unittest',
|
||||
'name': {'group_name': 'W3C Web Platform Tests',
|
||||
'group_symbol': 'W',
|
||||
'name': 'W3C Web Platform Tests',
|
||||
'job_symbol': '2'},
|
||||
'platform': {'arch': 'x86_64',
|
||||
'os': 'linux',
|
||||
'os_platform': 'linux64',
|
||||
'vm': True}}),
|
||||
('Linux mozilla-inbound build',
|
||||
{'build_type': 'opt',
|
||||
'job_type': 'build',
|
||||
|
|
|
@ -311,6 +311,10 @@ BUILD_TYPE_BUILDERNAME = [
|
|||
'type': 'asan',
|
||||
'regex': re.compile(WORD_BOUNDARY_RE + r'asan', re.IGNORECASE),
|
||||
},
|
||||
{
|
||||
'type': 'cc',
|
||||
'regex': re.compile(WORD_BOUNDARY_RE + r'code coverage', re.IGNORECASE),
|
||||
},
|
||||
{
|
||||
'type': 'debug',
|
||||
'regex': re.compile(WORD_BOUNDARY_RE + r'(?:debug|leak test)', re.IGNORECASE),
|
||||
|
|
|
@ -56,6 +56,7 @@ OPT_ORDER = {
|
|||
"pgo": 1,
|
||||
"asan": 2,
|
||||
"debug": 3,
|
||||
"cc": 4,
|
||||
}
|
||||
|
||||
class ResultSetViewSet(viewsets.ViewSet):
|
||||
|
|
Загрузка…
Ссылка в новой задаче