blob: 364389be344cf13e41a0f840bcf72a5d6153e9f6 [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Create the asset and upload it."""
import argparse
import os
import subprocess
import sys
import tempfile
import create
FILE_DIR = os.path.dirname(os.path.abspath(__file__))
ASSET = os.path.basename(FILE_DIR)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--chrome_src_path', '-c', required=True)
parser.add_argument('--browser_executable', '-e', required=True)
parser.add_argument('--upload_to_partner_bucket', action='store_true')
args = parser.parse_args()
# Pass the flags to the creation script via environment variables, since
# we're calling the script via `sk` and not directly.
os.environ[create.BROWSER_EXECUTABLE_ENV_VAR] = args.browser_executable
os.environ[create.CHROME_SRC_PATH_ENV_VAR] = args.chrome_src_path
os.environ[create.UPLOAD_TO_PARTNER_BUCKET_ENV_VAR] = (
'1' if args.upload_to_partner_bucket else '0')
sk = os.path.realpath(os.path.join(
FILE_DIR, os.pardir, os.pardir, os.pardir, os.pardir, 'bin', 'sk'))
if os.name == 'nt':
sk += '.exe'
if not os.path.isfile(sk):
raise Exception('`sk` not found at %s; maybe you need to run bin/fetch-sk?')
# Upload the asset.
subprocess.check_call([sk, 'asset', 'upload', ASSET], cwd=FILE_DIR)
if __name__ == '__main__':
main()