From 0d1bddc3b5b4f44e9e529e6cca7d723b2202f4d6 Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Tue, 13 May 2025 14:59:11 -0300 Subject: [PATCH] ci: use ninja on windows --- .github/workflows/desktop-build.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 59e4d5005..bdf77fe3c 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -357,19 +357,15 @@ jobs: needs: configure runs-on: windows-2022 env: - CMAKE_GENERATOR: 'Visual Studio 17 2022' + CMAKE_GENERATOR: 'Ninja' steps: - - name: Add msbuild to PATH - id: add-msbuild - uses: microsoft/setup-msbuild@v2 - with: - msbuild-architecture: x64 - - name: Checkout uses: actions/checkout@v4 with: submodules: recursive + - name: Setup MSVC + uses: ilammy/msvc-dev-cmd@v1 - name: Install Qt ${{matrix.qt_version}} uses: jurplel/install-qt-action@v4