mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-07-10 01:41:16 +00:00
Stub for installation of slang on CI
This commit is contained in:
parent
93e55e86e2
commit
73158bd4b6
1 changed files with 8 additions and 0 deletions
8
.github/workflows/ci.py
vendored
8
.github/workflows/ci.py
vendored
|
|
@ -101,6 +101,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()
|
||||
|
|
@ -129,6 +136,7 @@ def install_deps() -> None:
|
|||
if sys.version_info[:2] < (3, 7):
|
||||
cmd += ' importlib-resources dataclasses'
|
||||
run(cmd)
|
||||
install_slang_compiler()
|
||||
install_fonts()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue