Bug 1217987 - Append bucket prefix for staging post_upload.py; r=nthomas

This commit is contained in:
Mike Shal 2016-02-10 20:32:35 -05:00
parent 1d0d65215a
commit 4cc6d16b6c
2 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,9 @@ config = {
'stage_server': 'upload.ffxbld.productdelivery.stage.mozaws.net',
"sendchange_masters": ["dev-master1.srv.releng.scl3.mozilla.com:9038"],
'taskcluster_index': 'index.garbage.staging',
'post_upload_extra': ['--bucket-prefix', 'net-mozaws-stage-delivery',
'--url-prefix', 'http://ftp.stage.mozaws.net/',
],
},
"production": {
# if not clobberer_url, only clobber 'abs_work_dir'

View File

@ -1041,6 +1041,8 @@ or run without that action (ie: --no-{action})"
post_upload_cmd.append('--release-to-dated')
if c['platform_supports_post_upload_to_latest']:
post_upload_cmd.append('--release-to-latest')
post_upload_cmd.extend(c.get('post_upload_extra', []))
return post_upload_cmd
def _ccache_z(self):