From 075863181194ffd05b6121ff7c1b3e790f75b9f6 Mon Sep 17 00:00:00 2001 From: simbit18 Date: Fri, 5 Jun 2026 19:55:46 +0200 Subject: [PATCH] workflows/build.yml: Fix Skipping sim\windows in the MSVC job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix ==================================================================================== Cmake in present: sim\windows Configuration/Tool: sim\windows 2026-06-05 16:01:37 ------------------------------------------------------------------------------------ Cleaning... Skipping: sim\windows ------------------------------------------------------------------------------------ End: 2026-06-05 16:01:37 ==================================================================================== The "windows-latest" and “windows-2025” labels in GitHub Actions will be migrated to use Visual Studio 2026 by default. Customers needing Visual Studio 2022 must migrate to the windows-2022 image. https://github.com/actions/runner-images/issues/14017 Signed-off-by: simbit18 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c159fe7ff..5c137c5be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -435,7 +435,7 @@ jobs: msvc: needs: msvc-Arch if: ${{ needs.msvc-Arch.outputs.skip_all_builds != '1' }} - runs-on: windows-latest + runs-on: windows-2022 steps: - uses: actions/checkout@v6 # Set up Python environment and install kconfiglib