Update CI matrix in cmake.yml to remove platforms
Some checks failed
build / Ubuntu Latest GCC (push) Has been cancelled

Removed Windows and macOS configurations from the CI matrix.
This commit is contained in:
2025-10-15 13:07:50 +05:30
committed by GitHub
parent ccc6593539
commit da71c0cc13

View File

@@ -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