Bug 1421062: Use `Thunderbird` as the product in comm-central beetmover tasks; r=aki

Differential Revision: https://phabricator.services.mozilla.com/D783

--HG--
extra : rebase_source : 4c51948a47fb17989c79edf3d26d06c6c9c7fa09
extra : histedit_source : d239554a3e11c03e58acc0612c271726346605ab
This commit is contained in:
Tom Prince 2018-03-22 11:44:36 -06:00
Родитель d594fa479b
Коммит 5a1fdd4a26
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -453,10 +453,16 @@ def craft_release_properties(config, job):
else:
build_platform = build_platform.replace('-source', '')
app_name = 'Fennec' if 'android' in job['label'] or 'fennec' in job['label'] else 'Firefox'
# XXX This should be explicitly set via build attributes or something
if 'android' in job['label'] or 'fennec' in job['label']:
app_name = 'Fennec'
elif config.graph_config['trust-domain'] == 'comm':
app_name = 'Thunderbird'
else:
# XXX Even DevEdition is called Firefox
app_name = 'Firefox'
return {
# XXX Even DevEdition is called Firefox
'app-name': app_name,
'app-version': str(params['app_version']),
'branch': params['project'],