Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
generator: "Visual Studio 17 2022"
}
- {
name: "Windows MSVC 2025",
os: windows-2025,
name: "Windows MSVC 2026",
os: windows-2025-vs2026,
cc: "cl",
cxx: "cl",
generator: "Visual Studio 17 2022"
generator: "Visual Studio 18 2026"
}
- {
name: "Ubuntu 22 GCC 11",
Expand All @@ -45,14 +45,6 @@ jobs:
cxx: "g++",
generator: "Ninja"
}
- {
name: "macOS 13 Xcode 14",
os: macos-13,
cc: "clang",
cxx: "clang++",
generator: "Xcode",
xcode_version: "14.3.1"
}
- {
name: "macOS 14 Xcode 15 (ARM)",
os: macos-14,
Expand All @@ -77,10 +69,18 @@ jobs:
generator: "Xcode",
xcode_version: "16.4"
}
- {
name: "macOS 26 Xcode 26.5 (ARM)",
os: macos-26,
cc: "clang",
cxx: "clang++",
generator: "Xcode",
xcode_version: "26.5"
}
build_type: [Debug, Release]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Ninja (Linux)
if: runner.os == 'Linux'
Expand Down