ci: generate debug symbols on Linux (#18676)
This commit is contained in:
parent
41f1569c46
commit
92ff39c168
9 changed files with 192 additions and 17 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue