diff options
Diffstat (limited to 'taskcluster/taskgraph/transforms/strip_dependent_task.py')
-rw-r--r-- | taskcluster/taskgraph/transforms/strip_dependent_task.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/taskcluster/taskgraph/transforms/strip_dependent_task.py b/taskcluster/taskgraph/transforms/strip_dependent_task.py new file mode 100644 index 0000000000..f153a750cc --- /dev/null +++ b/taskcluster/taskgraph/transforms/strip_dependent_task.py @@ -0,0 +1,19 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +""" +FIXME +""" + +from __future__ import absolute_import, print_function, unicode_literals + +from taskgraph.transforms.base import TransformSequence + +transforms = TransformSequence() + + +@transforms.add +def strip_dependent_task(config, jobs): + for job in jobs: + del job["primary-dependency"] + yield job |