From b8c3e2229ab5a12cafd1af57270550d9dd99becc Mon Sep 17 00:00:00 2001 From: firewave Date: Fri, 18 Apr 2025 12:49:26 +0200 Subject: [PATCH] CI-windows.yml: removed `windows-2019` and added `windows-2025` --- .github/workflows/CI-windows.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI-windows.yml b/.github/workflows/CI-windows.yml index 1f78876d..37ebf4fc 100644 --- a/.github/workflows/CI-windows.yml +++ b/.github/workflows/CI-windows.yml @@ -15,7 +15,7 @@ jobs: build: strategy: matrix: - os: [windows-2019, windows-2022] + os: [windows-2022, windows-2025] config: [Release, Debug] fail-fast: false @@ -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!