Stub for installation of slang on CI

This commit is contained in:
Kovid Goyal 2026-06-24 09:05:54 +05:30
parent 7d96c15d2d
commit 991333e6c3
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -102,6 +102,13 @@ def install_fonts() -> None:
tf.extractall(fonts_dir)
def install_slang_compiler() -> None:
# TODO: Install the latest slang compiler binary release from https://github.com/shader-slang/slang
# It needs to be installed so that we can use the header files and
# libraries via pkgconf
...
def install_deps() -> None:
print('Installing kitty dependencies...')
sys.stdout.flush()
@ -133,6 +140,7 @@ def install_deps() -> None:
if sys.version_info[:2] < (3, 7):
cmd += ' importlib-resources dataclasses'
run(cmd)
install_slang_compiler()
install_fonts()