mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-27 03:42:49 +00:00
Build dSYM bundles on CI
This commit is contained in:
parent
6b6f3e0ece
commit
2b9c646c5b
2 changed files with 25 additions and 6 deletions
2
.github/workflows/ci.py
vendored
2
.github/workflows/ci.py
vendored
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue