Skip to content

Commit ca42d76

Browse files
committed
ci: MSVC 14.5 disabled from CI (no GitHub runners with VS2026)
1 parent 66bb765 commit ca42d76

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/generate-job-matrix.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,8 @@ def make_apple_clang_config(
127127
def make_msvc_config(release: str) -> Toolchain:
128128
match release:
129129
case "14.4":
130-
os = "windows-2022"
131-
version = 194
132-
case "14.5":
133130
os = "windows-2025"
134-
version = 195
131+
version = 194
135132
case _:
136133
raise KeyError(f"Unsupported MSVC release {release!r}")
137134
return Toolchain(
@@ -158,7 +155,7 @@ def make_msvc_config(release: str) -> Toolchain:
158155
if ver == 18 or architecture != "arm64"
159156
]
160157
+ [make_apple_clang_config("macos-14", "16", xcode_version="16.1")]
161-
+ [make_msvc_config(release) for release in ["14.4", "14.5"]]
158+
+ [make_msvc_config(release="14.4")]
162159
}
163160

164161
full_matrix = dict(

0 commit comments

Comments
 (0)