Bug 1371038: Remove unused stylo tasks target r=Callek draft
authorChris AtLee <catlee@mozilla.com>
Thu, 22 Jun 2017 12:48:17 -0400
changeset 606317 867da3a50013bb3c712d3041bef37191a3e586d2
parent 606316 f97cf120d107d1d23374e2642117deeecbc99b33
child 606318 39ac752a312afe04187728da82a4a7f722634811
push id67675
push usercatlee@mozilla.com
push dateMon, 10 Jul 2017 21:30:54 +0000
reviewersCallek
bugs1371038
milestone56.0a1
Bug 1371038: Remove unused stylo tasks target r=Callek MozReview-Commit-ID: BXxHTeOyksO
taskcluster/taskgraph/target_tasks.py
--- a/taskcluster/taskgraph/target_tasks.py
+++ b/taskcluster/taskgraph/target_tasks.py
@@ -286,28 +286,16 @@ def target_tasks_pine(full_task_graph, p
         if platform == 'linux64-asan':
             return False
         # disable non-pine and nightly tasks
         if standard_filter(task, parameters):
             return True
     return [l for l, t in full_task_graph.tasks.iteritems() if filter(t)]
 
 
-@_target_task('stylo_tasks')
-def target_tasks_stylo(full_task_graph, parameters):
-    """Target stylotasks that only run on the m-c branch."""
-    def filter(task):
-        platform = task.attributes.get('build_platform')
-        # only select platforms
-        if platform not in ('linux64-stylo'):
-            return False
-        return True
-    return [l for l, t in full_task_graph.tasks.iteritems() if filter(t)]
-
-
 # nightly_linux should be refactored to be nightly_all once
 # https://bugzilla.mozilla.org/show_bug.cgi?id=1267425 dependent bugs are
 # implemented
 @_target_task('nightly_macosx')
 def target_tasks_nightly_macosx(full_task_graph, parameters):
     """Select the set of tasks required for a nightly build of macosx. The
     nightly build process involves a pipeline of builds, signing,
     and, eventually, uploading the tasks to balrog."""