build: upload windows breakpad symbols (#25000)
This commit is contained in:
parent
bac2f46ba9
commit
ab6769d7f8
1 changed files with 3 additions and 2 deletions
|
@ -36,12 +36,13 @@ if sys.platform == "win32":
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
os.chdir(ELECTRON_DIR)
|
os.chdir(ELECTRON_DIR)
|
||||||
|
files = []
|
||||||
if PLATFORM == 'win32':
|
if PLATFORM == 'win32':
|
||||||
for pdb in PDB_LIST:
|
for pdb in PDB_LIST:
|
||||||
run_symstore(pdb, SYMBOLS_DIR, PRODUCT_NAME)
|
run_symstore(pdb, SYMBOLS_DIR, PRODUCT_NAME)
|
||||||
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
|
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
|
||||||
else:
|
|
||||||
files = glob.glob(SYMBOLS_DIR + '/*/*/*.sym')
|
files += glob.glob(SYMBOLS_DIR + '/*/*/*.sym')
|
||||||
|
|
||||||
for symbol_file in files:
|
for symbol_file in files:
|
||||||
print("Generating Sentry src bundle for: " + symbol_file)
|
print("Generating Sentry src bundle for: " + symbol_file)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue