Make building of static kittens the last step in CI

It is the least likely to fail and also the longest to execute
This commit is contained in:
Kovid Goyal
2023-08-11 08:48:19 +05:30
parent 193c2542bd
commit 3687694d0d

View File

@@ -104,9 +104,6 @@ jobs:
- name: Build kitty
run: python setup.py build --debug
- name: Build static kitten
run: python setup.py build-static-binaries
- name: Run mypy
run: which python && python -m mypy --version && ./test.py mypy
@@ -119,6 +116,9 @@ jobs:
- name: Build HTML docs
run: make FAIL_WARN=1 html
- name: Build static kittens
run: python setup.py build-static-binaries
bundle:
name: Bundle test (${{ matrix.os }})
runs-on: ${{ matrix.os }}