Upload PDBs to Windows symbol server when publishing

This commit is contained in:
Cheng Zhao 2014-11-07 22:52:00 +08:00
parent 45fb3ec41d
commit 34521e5880

View file

@ -69,6 +69,11 @@ def main():
os.path.join(SOURCE_ROOT, 'script', 'upload-checksums.py'), os.path.join(SOURCE_ROOT, 'script', 'upload-checksums.py'),
'-v', ATOM_SHELL_VERSION]) '-v', ATOM_SHELL_VERSION])
# Upload PDBs to Windows symbol server.
if TARGET_PLATFORM == 'win32':
execute([sys.executable,
os.path.join(SOURCE_ROOT, 'script', 'upload-windows-pdb.py')])
# Press the publish button. # Press the publish button.
publish_release(github, release_id) publish_release(github, release_id)