author | Sebastian Hengst <archaeopteryx@coole-files.de> |
Fri, 18 Nov 2016 00:25:36 +0100 | |
changeset 323131 | f76168493c67243ef23db29b342866549e9d6efb |
parent 323130 | 0b955dfca1512ace622861b27859b23a58398234 |
child 323132 | 627cc696e6e511f54c5f8e9d8cf49a7fee0a2e33 |
push id | 30970 |
push user | cbook@mozilla.com |
push date | Fri, 18 Nov 2016 15:49:14 +0000 |
treeherder | mozilla-central@6186126f502b [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | flake8-fix |
bugs | 1318099 |
milestone | 53.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/taskcluster/taskgraph/target_tasks.py +++ b/taskcluster/taskgraph/target_tasks.py @@ -122,16 +122,17 @@ def target_tasks_cedar(full_task_graph, @_target_task('graphics_tasks') def target_tasks_graphics(full_task_graph, parameters): """In addition to doing the filtering by project that the 'default' filter does, also remove artifact builds because we have csets on the graphics branch that aren't on the candidate branches of artifact builds""" filtered_for_project = target_tasks_default(full_task_graph, parameters) + def filter(task): if task.attributes['kind'] == 'artifact-build': return False return True return [l for l in filtered_for_project if filter(full_task_graph[l])] @_target_task('nightly_fennec')