Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Update autograph signing URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall Barker committed May 11, 2019
1 parent 91f60f2 commit 91af207
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ tasks:
&& . tools/taskcluster/get_third_party.sh
&& cp tools/gradle/taskcluster.properties ./user.properties
&& ./gradlew --no-daemon --console=plain clean assembleNoapi assembleGooglevr assembleWavevr assembleSvr assembleOculusvr
&& . tools/taskcluster/sign.sh staging-signing-token
&& python tools/taskcluster/fetch_secret.py -s project/firefoxreality/staging-signing-token -o token -n token
&& python tools/taskcluster/sign_apk.py -t token
&& python tools/taskcluster/archive_debug_apk.py
&& . tools/taskcluster/upload_symbols.sh
artifacts:
'public':
Expand Down Expand Up @@ -127,7 +129,9 @@ tasks:
&& . tools/taskcluster/get_third_party.sh
&& cp tools/gradle/taskcluster.properties ./user.properties
&& ./gradlew --no-daemon --console=plain clean `python tools/taskcluster/build_targets.py {{ event.version }}`
&& . tools/taskcluster/sign.sh release-signing-token -r
&& python tools/taskcluster/fetch_secret.py -s project/firefoxreality/release-signing-token -o token -n token
&& python tools/taskcluster/sign_apk.py -t token -r
&& python tools/taskcluster/archive_debug_apk.py
&& . tools/taskcluster/upload_symbols.sh
artifacts:
'public':
Expand Down
4 changes: 0 additions & 4 deletions tools/taskcluster/sign.sh

This file was deleted.

4 changes: 2 additions & 2 deletions tools/taskcluster/sign_apk.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

def main(name, argv):
token = ''
sign_url = 'https://autograph-edge.stage.mozaws.net/sign'
sign_url = 'https://edge.stage.autograph.services.mozaws.net/sign'
release = False
try:
opts, args = getopt.getopt(argv,"ht:r")
Expand All @@ -28,7 +28,7 @@ def main(name, argv):
with open(arg, 'r') as tokenfile:
token = tokenfile.read().rstrip()
elif opt in ('-r'):
sign_url = 'https://autograph-edge.prod.mozaws.net/sign'
sign_url = 'https://edge.prod.autograph.services.mozaws.net/sign'
release = True

build_output_path = './app/build/outputs/apk'
Expand Down

0 comments on commit 91af207

Please sign in to comment.