Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/cmake_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
# Pinned to windows-2022: windows-latest now ships Visual Studio 2026
# (MSVC 19.5), which makes Conan request the "Visual Studio 18 2026"
# generator that the installed CMake cannot create.
os: [windows-2022]
build_type: [Release, Debug]

steps:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pixi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ concurrency:
jobs:
pixi_conda_build:
strategy:
fail-fast: false
matrix:
os:
- windows-latest
# Pinned to windows-2022: windows-latest now ships Visual Studio 2026,
# but cmake defaults to the "Visual Studio 17 2022" generator, which is
# no longer present ("could not find any instance of Visual Studio").
- windows-2022
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
Expand Down
Loading