1
0
Fork 0

Bug 1580778 - Fix Nightly decision graph part 2 (#5353)

master
Johan Lorenzo 2019-09-16 14:13:29 +02:00 committed by GitHub
parent eea65b2339
commit 24b4a3aaf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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 "{}/<build>/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,
}