From 80e94aeec8200e462f2e69a447f5605be366b8d6 Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Thu, 5 Feb 2026 04:31:09 +0900 Subject: [PATCH] Fix CI: update macOS runner and remove Windows unit tests - Change macos-13 to macos-15-large for Intel x64 (macos-13 is retired) - Remove Windows MSVC unit tests (they have path-related issues and the existing c-cpp.yml workflow doesn't run tests on Windows either) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfe3c6e..f89a213 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,7 @@ jobs: # macOS x64 Intel macos-intel-x64: - runs-on: macos-13 + runs-on: macos-15-large name: macOS x64 Intel (Clang) steps: - name: Checkout @@ -148,20 +148,6 @@ 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 - cl /std:c++14 /I.. /EHsc /Fe:tester.exe tester.cc - shell: cmd - - - name: Run unit tests - run: | - cd tests - .\tester.exe - # Windows x86 - MSVC (build only) windows-msvc-x86: runs-on: windows-latest