From 4f28ca1f823c348055bee28fbaae226018580b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Kubern=C3=A1t?= Date: Wed, 20 Sep 2023 16:31:51 +0200 Subject: [PATCH] CI: windows: Install ninja It was only available as a transitive dependency. https://github.com/actions/runner-images/issues/8343 --- .github/actions/cmake/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/cmake/action.yml b/.github/actions/cmake/action.yml index d6ea6733c..780e0756a 100644 --- a/.github/actions/cmake/action.yml +++ b/.github/actions/cmake/action.yml @@ -37,7 +37,7 @@ runs: - name: Install Windows deps if: runner.os == 'Windows' run: | - vcpkg install doctest:x64-mingw-dynamic trompeloeil:x64-mingw-dynamic + vcpkg install doctest:x64-mingw-dynamic trompeloeil:x64-mingw-dynamic vcpkg-tool-ninja:x64-mingw-dynamic echo cmake_extra_args="'-DCMAKE_TOOLCHAIN_FILE=$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake' '-DMINGW=ON'" >> "$GITHUB_ENV" shell: bash