From 3d5453ecd0a5899dbda9c05dba2f989b85ee5a1b Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Thu, 5 Feb 2026 04:08:50 +0900 Subject: [PATCH] Fix Windows MSVC unit tests build by setting up developer environment The `cl` compiler was not in PATH because the Visual Studio developer environment needs to be set up before calling MSVC tools directly. Added `ilammy/msvc-dev-cmd@v1` action to configure the environment. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69e914c..bfe3c6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,6 +148,9 @@ jobs: run: | .\build\Release\loader_example.exe models\Cube\Cube.gltf + - name: Setup MSVC environment + uses: ilammy/msvc-dev-cmd@v1 + - name: Build unit tests run: | cd tests