From 0ed7f220e53fe1f62268d57128492c095660d888 Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Mon, 16 Sep 2019 12:01:14 +0200 Subject: [PATCH] Bug 1580778 - Fix Nightly decision graph --- automation/taskcluster/lib/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index b2ac0d186..13b1987c3 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -216,7 +216,7 @@ class TaskBuilder(object): treeherder=treeherder, ) - def craft_upload_apk_nimbledroid_task(self, assemble_task_id): + def craft_upload_apk_nimbledroid_task(self, assemble_task_label): # For GeckoView, upload nightly (it has release config) by default, all Release builds have WV return self._craft_build_ish_task( name="Upload Release APK to Nimbledroid", @@ -234,7 +234,7 @@ class TaskBuilder(object): 'tier': 2, }, scopes=["secrets:get:project/mobile/fenix/nimbledroid"], - dependencies=[assemble_task_id], + dependencies={'build': assemble_task_label}, ) def craft_detekt_task(self):