From cb5a2cce53efd2f66edd828b3191ab2b79e3d1ce Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 21 Jan 2024 13:56:21 +0530 Subject: [PATCH] ... --- .github/workflows/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index 205781cfe..ed7f0173a 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -92,7 +92,7 @@ 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' + cmd += ' --debug' # for better crash report to debug SIGILL issue if os.environ.get('KITTY_SANITIZE') == '1': cmd += ' --debug --sanitize' run(cmd)