From 3687694d0dc04f3b6dc2d9dc929fab19e0c10eb7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 11 Aug 2023 08:48:19 +0530 Subject: [PATCH] Make building of static kittens the last step in CI It is the least likely to fail and also the longest to execute --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9528070e9..a9de2901b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}