From 76b6ca6e4e1a5c8b9c2e750cc91308298df72578 Mon Sep 17 00:00:00 2001 From: Nexius Date: Mon, 3 Nov 2025 18:02:47 +0300 Subject: [PATCH] fix windows github runner version --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1433d89..c0f7e96 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ on: jobs: build-windows: - runs-on: windows-2019 + runs-on: windows-latest steps: - uses: actions/checkout@v4 with: @@ -20,7 +20,7 @@ jobs: run: | mkdir build cd build - cmake -DCMAKE_BUILD_TYPE=Release ../source/compiler -A Win32 -G "Visual Studio 16 2019" -DCMAKE_C_FLAGS="/D sNAMEMAX=63" + cmake -DCMAKE_BUILD_TYPE=Release ../source/compiler -A Win32 -G "Visual Studio 17 2022" -DCMAKE_C_FLAGS="/D sNAMEMAX=63" cmake --build . --config Release - name: Upload artifacts