From e699266724660ffe244459fb6548c848a2c80b2e Mon Sep 17 00:00:00 2001 From: David Bloomin Date: Wed, 20 Mar 2024 17:33:56 -0700 Subject: [PATCH] install ninja in github actions --- .github/workflows/build-test-publish.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 06eea313..329e259a 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -93,6 +93,10 @@ jobs: run: | /opt/python/$PYBIN/bin/pip install poetry cmake conan==1.59.0 + # Install Ninja + - name: Install Ninja + run: sudo apt-get install -y ninja-build + # Configure conan for release build - name: Build run: | @@ -152,7 +156,7 @@ jobs: id: py with: python-version: ${{ matrix.windows_config.python-version }} - + # Setup MSVC - name: Setup MSVC uses: ilammy/msvc-dev-cmd@v1