From 24b4a3aaf5eb89afc73a898b2359c7e4b9675eed Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Mon, 16 Sep 2019 14:13:29 +0200 Subject: [PATCH] Bug 1580778 - Fix Nightly decision graph part 2 (#5353) --- automation/taskcluster/lib/tasks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index 0bbf72b26..3c9987ba4 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -222,7 +222,7 @@ class TaskBuilder(object): name="Upload Release APK to Nimbledroid", description='Upload APKs to Nimbledroid for performance measurement and tracking.', command=' && '.join([ - 'curl --location "{}/{}/artifacts/public/build/armeabi-v7a/geckoNightly/target.apk" > target.apk'.format(_DEFAULT_TASK_URL, assemble_task_id), + 'curl --location "{}//artifacts/public/build/armeabi-v7a/geckoNightly/target.apk" > target.apk'.format(_DEFAULT_TASK_URL), 'python automation/taskcluster/upload_apk_nimbledroid.py', ]), treeherder={ @@ -345,7 +345,8 @@ class TaskBuilder(object): "/bin/bash", "--login", "-cx", - command + # Some tasks like nimbledroid do have tasks references + {'task-reference': command}, ], "artifacts": artifacts, }