electron/script/upload-windows-pdb.py

43 строки
1009 B
Python
Исходник Обычный вид История

2014-11-07 15:19:26 +03:00
#!/usr/bin/env python
import os
2014-11-07 15:51:25 +03:00
import glob
2014-11-07 15:19:26 +03:00
2014-11-07 15:51:25 +03:00
from lib.util import execute, rm_rf, safe_mkdir, s3put, s3_config
2014-11-07 15:19:26 +03:00
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
SYMBOLS_DIR = 'dist\\symbols'
2014-11-10 18:33:56 +03:00
DOWNLOAD_DIR = 'vendor\\brightray\\vendor\\download\\libchromiumcontent'
2014-11-07 15:19:26 +03:00
PDB_LIST = [
'out\\R\\atom.exe.pdb',
2014-11-07 15:19:26 +03:00
]
def main():
os.chdir(SOURCE_ROOT)
rm_rf(SYMBOLS_DIR)
safe_mkdir(SYMBOLS_DIR)
for pdb in PDB_LIST:
run_symstore(pdb, SYMBOLS_DIR, 'AtomShell')
2014-11-07 15:51:25 +03:00
bucket, access_key, secret_key = s3_config()
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
2014-11-10 18:07:57 +03:00
files = [f.lower() for f in files]
2014-11-07 15:51:25 +03:00
upload_symbols(bucket, access_key, secret_key, files)
2014-11-07 15:19:26 +03:00
def run_symstore(pdb, dest, product):
execute(['symstore', 'add', '/r', '/f', pdb, '/s', dest, '/t', product])
2014-11-07 15:51:25 +03:00
def upload_symbols(bucket, access_key, secret_key, files):
2014-11-10 18:33:56 +03:00
s3put(bucket, access_key, secret_key, SYMBOLS_DIR, 'atom-shell/symbols',
files)
2014-11-07 15:51:25 +03:00
2014-11-07 15:19:26 +03:00
if __name__ == '__main__':
import sys
sys.exit(main())