ci: generate debug symbols on Linux (#18676)

This commit is contained in:
Julien Isorce 2019-11-20 17:21:44 -08:00 committed by Jeremy Apthorp
parent 41f1569c46
commit 92ff39c168
9 changed files with 192 additions and 17 deletions

View file

@ -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')