2014-11-07 12:19:26 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-11-07 12:51:25 +00:00
|
|
|
import glob
|
2020-07-29 19:41:53 +00:00
|
|
|
import os
|
2020-08-05 21:03:50 +00:00
|
|
|
import shutil
|
2020-07-29 19:41:53 +00:00
|
|
|
import subprocess
|
2015-04-12 14:26:00 +00:00
|
|
|
import sys
|
2014-11-07 12:19:26 +00:00
|
|
|
|
2019-06-26 18:32:42 +00:00
|
|
|
sys.path.append(
|
|
|
|
os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../.."))
|
2019-06-24 17:18:04 +00:00
|
|
|
|
2018-05-23 19:53:48 +00:00
|
|
|
from lib.config import PLATFORM, s3_config, enable_verbose_mode
|
2018-09-28 01:24:25 +00:00
|
|
|
from lib.util import get_electron_branding, execute, rm_rf, safe_mkdir, s3put, \
|
2019-06-24 17:18:04 +00:00
|
|
|
get_out_dir, ELECTRON_DIR
|
2014-11-07 12:19:26 +00:00
|
|
|
|
2018-09-28 01:24:25 +00:00
|
|
|
RELEASE_DIR = get_out_dir()
|
2015-04-12 14:26:00 +00:00
|
|
|
|
2018-09-27 18:53:08 +00:00
|
|
|
|
|
|
|
PROJECT_NAME = get_electron_branding()['project_name']
|
|
|
|
PRODUCT_NAME = get_electron_branding()['product_name']
|
2018-11-14 20:47:01 +00:00
|
|
|
SYMBOLS_DIR = os.path.join(RELEASE_DIR, 'breakpad_symbols')
|
2018-05-23 19:53:48 +00:00
|
|
|
|
2014-11-07 12:19:26 +00:00
|
|
|
PDB_LIST = [
|
2018-09-28 01:24:25 +00:00
|
|
|
os.path.join(RELEASE_DIR, '{0}.exe.pdb'.format(PROJECT_NAME))
|
2014-11-07 12:19:26 +00:00
|
|
|
]
|
|
|
|
|
2020-07-29 19:41:53 +00:00
|
|
|
NPX_CMD = "npx"
|
|
|
|
if sys.platform == "win32":
|
|
|
|
NPX_CMD += ".cmd"
|
|
|
|
|
2014-11-07 12:19:26 +00:00
|
|
|
|
|
|
|
def main():
|
2019-06-24 17:18:04 +00:00
|
|
|
os.chdir(ELECTRON_DIR)
|
2018-05-23 19:53:48 +00:00
|
|
|
if PLATFORM == 'win32':
|
|
|
|
for pdb in PDB_LIST:
|
|
|
|
run_symstore(pdb, SYMBOLS_DIR, PRODUCT_NAME)
|
|
|
|
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
|
|
|
|
else:
|
2020-07-29 19:41:53 +00:00
|
|
|
files = glob.glob(SYMBOLS_DIR + '/*/*/*.sym')
|
|
|
|
|
|
|
|
for symbol_file in files:
|
|
|
|
print("Generating Sentry src bundle for: " + symbol_file)
|
|
|
|
subprocess.check_output([NPX_CMD, '@sentry/cli@1.51.1', 'difutil', 'bundle-sources', symbol_file])
|
|
|
|
|
|
|
|
files += glob.glob(SYMBOLS_DIR + '/*/*/*.src.zip')
|
2019-02-12 22:10:24 +00:00
|
|
|
|
|
|
|
# The file upload needs to be atom-shell/symbols/:symbol_name/:hash/:symbol
|
|
|
|
os.chdir(SYMBOLS_DIR)
|
|
|
|
files = [os.path.relpath(f, os.getcwd()) for f in files]
|
|
|
|
|
2018-10-19 00:18:35 +00:00
|
|
|
# The symbol server needs lowercase paths, it will fail otherwise
|
|
|
|
# So lowercase all the file paths here
|
2020-08-05 21:03:50 +00:00
|
|
|
for f in files:
|
|
|
|
lower_f = f.lower()
|
|
|
|
if lower_f != f:
|
|
|
|
if os.path.exists(lower_f):
|
|
|
|
shutil.rmtree(lower_f)
|
|
|
|
lower_dir = os.path.dirname(lower_f)
|
|
|
|
if not os.path.exists(lower_dir):
|
|
|
|
os.makedirs(lower_dir)
|
|
|
|
shutil.copy2(f, lower_f)
|
2018-10-19 00:18:35 +00:00
|
|
|
files = [f.lower() for f in files]
|
2020-08-05 21:03:50 +00:00
|
|
|
for f in files:
|
|
|
|
assert os.path.exists(f)
|
2014-11-07 12:19:26 +00:00
|
|
|
|
2014-11-07 12:51:25 +00:00
|
|
|
bucket, access_key, secret_key = s3_config()
|
|
|
|
upload_symbols(bucket, access_key, secret_key, files)
|
|
|
|
|
2014-11-07 12:19:26 +00:00
|
|
|
|
|
|
|
def run_symstore(pdb, dest, product):
|
|
|
|
execute(['symstore', 'add', '/r', '/f', pdb, '/s', dest, '/t', product])
|
|
|
|
|
|
|
|
|
2014-11-07 12:51:25 +00:00
|
|
|
def upload_symbols(bucket, access_key, secret_key, files):
|
2014-11-10 15:33:56 +00:00
|
|
|
s3put(bucket, access_key, secret_key, SYMBOLS_DIR, 'atom-shell/symbols',
|
|
|
|
files)
|
2014-11-07 12:51:25 +00:00
|
|
|
|
|
|
|
|
2014-11-07 12:19:26 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|