mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-09 19:10:42 +00:00
47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
# 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/.
|
|
|
|
"""
|
|
This script talks to the taskcluster secrets service to obtain the
|
|
Nimbledroid account key and upload Klar and Focus apk to Nimbledroid for perf analysis.
|
|
"""
|
|
|
|
import taskcluster
|
|
import requests
|
|
import json
|
|
import urllib2
|
|
import os
|
|
|
|
url = "https://nimbledroid.com/api/v2/apks"
|
|
|
|
def uploadApk(apk,key):
|
|
headers = {"Accept":"*/*"}
|
|
payload = {'auto_scenarios':'false'}
|
|
response = requests.post(url, auth=(key, ''), headers=headers, files=apk, data=payload)
|
|
|
|
if response.status_code != 201:
|
|
print('Status:', response.status_code, 'Headers:', response.headers, 'Error Response:',response.json())
|
|
exit(1)
|
|
|
|
# Print Response Details
|
|
print 'Response Status Code:', response.status_code
|
|
|
|
print ''
|
|
print('Reponse Payload:')
|
|
print json.dumps(response.json(), indent=4)
|
|
|
|
|
|
def uploadNightlyFenixApk(key):
|
|
apk_url = 'https://index.taskcluster.net/v1/task/project.mobile.fenix.v2.nightly.latest/artifacts/public/build/arm/target.apk'
|
|
apk_data = urllib2.urlopen(apk_url).read()
|
|
with open('./fenix_example_nd.apk', 'wb') as f:
|
|
f.write(apk_data)
|
|
uploadApk({'apk' : open('fenix_example_nd.apk')},key)
|
|
|
|
# Get JSON data from taskcluster secrets service
|
|
secrets = taskcluster.Secrets({'baseUrl': 'http://taskcluster/secrets/v1'})
|
|
data = secrets.get('project/mobile/fenix/nimbledroid')
|
|
# upload the nightly build to Nimbledroid
|
|
uploadNightlyFenixApk(data['secret']['api_key'])
|