Bug 1499822 - [taskgraph] Add a tag to help differentiate 'android-stuff' from builds, r=jmaher

This will be used by |mach try chooser| to help pull 'android-stuff' tasks
(which aren't really builds) apart from the main build tasks.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew Halberstadt 2019-01-08 16:45:02 +00:00
Родитель e24888e839
Коммит a46ca1f4ad
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1,4 +1,6 @@
job-defaults:
tags:
android-stuff: true
run:
mozconfig-variant: null

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

@ -87,7 +87,7 @@ task_description_schema = Schema({
Optional('scopes'): [basestring],
# Tags
Optional('tags'): {basestring: basestring},
Optional('tags'): {basestring: Any(basestring, int, bool)},
# custom "task.extra" content
Optional('extra'): {basestring: object},