Skip to content

CI-windows.yml: removed windows-2019 and added windows-2025 #426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 2 additions & 8 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
strategy:
matrix:
os: [windows-2019, windows-2022]
os: [windows-2022, windows-2025]
config: [Release, Debug]
fail-fast: false

Expand All @@ -27,13 +27,7 @@ jobs:
- name: Setup msbuild.exe
uses: microsoft/setup-msbuild@v2

- name: Run cmake
if: matrix.os == 'windows-2019'
run: |
cmake -G "Visual Studio 16 2019" -A x64 . || exit /b !errorlevel!

- name: Run cmake
if: matrix.os == 'windows-2022'
- name: Run CMake
run: |
cmake -G "Visual Studio 17 2022" -A x64 . || exit /b !errorlevel!

Expand Down