From e4e5d75a3d59fb30cdefeaed290682e1a7ceae14 Mon Sep 17 00:00:00 2001 From: Aki Sasaki Date: Thu, 22 Feb 2018 13:30:09 +0000 Subject: [PATCH] bug 1438023 - stop running old-id android builds in `promote_fennec`. r=bhearsum MozReview-Commit-ID: 6XqcXoHkSlF --HG-- extra : rebase_source : 87b5b5b71b8361027e11d0de73d270b7bb0ce6a7 --- taskcluster/taskgraph/target_tasks.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/taskcluster/taskgraph/target_tasks.py b/taskcluster/taskgraph/target_tasks.py index a67a0d3e86f9..3c8ac10a1cf8 100644 --- a/taskcluster/taskgraph/target_tasks.py +++ b/taskcluster/taskgraph/target_tasks.py @@ -486,6 +486,11 @@ def target_tasks_promote_fennec(full_task_graph, parameters, graph_config): if attr("locale") or attr("chunk_locales"): return False if task.label in filtered_for_project: + # bug 1438023 - old-id should only run on central. + # We can remove this hack when shippable builds land and we + # are using run-on-projects properly here. + if 'old-id' in task.label: + return False if task.kind not in ('balrog', 'push-apk', 'push-apk-breakpoint'): if task.attributes.get('nightly'): return True