From da71c0cc13081735dd1e84d5d6fc4a24e6adb9ff Mon Sep 17 00:00:00 2001 From: Avinal Kumar Date: Wed, 15 Oct 2025 13:07:50 +0530 Subject: [PATCH] Update CI matrix in cmake.yml to remove platforms Removed Windows and macOS configurations from the CI matrix. --- .github/workflows/cmake.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4f46b9f..cf43649 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -10,21 +10,11 @@ jobs: fail-fast: false matrix: config: - - { - name: "Windows Latest MSVC", - os: windows-latest, - build_type: "Debug", cc: "cl", cxx: "cl" - } - { name: "Ubuntu Latest GCC", os: ubuntu-latest, build_type: "Debug", cc: "gcc", cxx: "g++" } - - { - name: "macOS Latest Clang", - os: macos-latest, - build_type: "Debug", cc: "clang", cxx: "clang++" - } steps: - uses: actions/checkout@v2