Build dSYM bundles on CI

This commit is contained in:
Kovid Goyal 2024-01-21 12:54:17 +05:30
parent 6b6f3e0ece
commit 2b9c646c5b
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 25 additions and 6 deletions

View file

@ -91,6 +91,8 @@ def install_deps():
def build_kitty():
python = shutil.which('python3') if is_bundle else sys.executable
cmd = f'{python} setup.py build --verbose'
if is_macos:
cmd += ' --build-dSYM'
if os.environ.get('KITTY_SANITIZE') == '1':
cmd += ' --debug --sanitize'
run(cmd)