No bug: [taskgraph] Inherit treeherder collection for non-opt platforms; r=Callek

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Prince 2019-07-12 02:11:38 +00:00
Родитель bd1512fcbf
Коммит fe129c3cdc
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -43,9 +43,10 @@ def inherit_treeherder_from_dep(job, dep_job):
dep_th_platform = dep_job.task.get('extra', {}).get(
'treeherder', {}).get('machine', {}).get('platform', '')
# XXX Doesn't yet support non-opt
dep_th_collection = dep_job.task.get('extra', {}).get(
'treeherder', {}).get('collection', {}).keys()[0]
treeherder.setdefault('platform',
"{}/opt".format(dep_th_platform))
"{}/{}".format(dep_th_platform, dep_th_collection))
treeherder.setdefault(
'tier',
dep_job.task.get('extra', {}).get('treeherder', {}).get('tier', 1)