mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
ci: generate debug symbols on Linux (#18676)
This commit is contained in:
committed by
Jeremy Apthorp
parent
41f1569c46
commit
92ff39c168
@@ -43,6 +43,13 @@ def main():
|
||||
pdb_zip_file = os.path.join(args.build_dir, pdb_name)
|
||||
print('Making pdb zip: ' + pdb_zip_file)
|
||||
make_zip(pdb_zip_file, pdbs + licenses, [])
|
||||
elif PLATFORM == 'linux':
|
||||
debug_name = 'debug.zip'
|
||||
with scoped_cwd(args.build_dir):
|
||||
dirs = ['debug']
|
||||
debug_zip_file = os.path.join(args.build_dir, debug_name)
|
||||
print('Making debug zip: ' + debug_zip_file)
|
||||
make_zip(debug_zip_file, licenses, dirs)
|
||||
|
||||
def parse_args():
|
||||
parser = argparse.ArgumentParser(description='Zip symbols')
|
||||
|
||||
Reference in New Issue
Block a user