From b33704542304c651f12e8f2a20d29678a8c13c57 Mon Sep 17 00:00:00 2001 From: shinra-electric <50119606+shinra-electric@users.noreply.github.com> Date: Tue, 30 Jun 2026 21:46:31 +0900 Subject: [PATCH 1/2] Change MSVC setup repo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc43950c65..d33f53da34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,7 +93,7 @@ jobs: - name: Setup MSVC if: matrix.config.os == 'windows-latest' && matrix.config.msvc == true - uses: ilammy/msvc-dev-cmd@v1 + uses: TheMrMilchmann/setup-msvc-dev@v4 - name: Install dependencies (Windows) if: matrix.config.os == 'windows-latest' From b72f256c17f771ddb6f969f08d0e9ebb90397f7d Mon Sep 17 00:00:00 2001 From: shinra-electric <50119606+shinra-electric@users.noreply.github.com> Date: Tue, 30 Jun 2026 22:27:48 +0900 Subject: [PATCH 2/2] Specify x64 architecture for MSVC setup Added architecture specification for MSVC setup. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d33f53da34..893ef0663a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,6 +94,8 @@ jobs: - name: Setup MSVC if: matrix.config.os == 'windows-latest' && matrix.config.msvc == true uses: TheMrMilchmann/setup-msvc-dev@v4 + with: + arch: x64 - name: Install dependencies (Windows) if: matrix.config.os == 'windows-latest'