From 076283fa8870224876df0b5098a241f57c507453 Mon Sep 17 00:00:00 2001 From: Thirumalai Nagalingam Date: Wed, 20 Aug 2025 17:19:48 +0530 Subject: [PATCH] CI: Enable MSVC ARM64 job using Github WOA runner - Reintroduce the MSVC ARM64 build configuration with "Visual Studio 17 2022" - Update runner to `windows-11-arm` (GitHub-hosted Windows on ARM) --- .github/workflows/cmake-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-tests.yml b/.github/workflows/cmake-tests.yml index 0ce2a7d8f..f1ed1f850 100644 --- a/.github/workflows/cmake-tests.yml +++ b/.github/workflows/cmake-tests.yml @@ -96,10 +96,10 @@ jobs: runner: "windows-2022" # Intentionally omit ZSTD_BUILD_TESTS to reproduce the CXX language configuration bug cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON" - # - generator: "Visual Studio 17 2022" - # flags: "-A ARM64" - # name: "MSVC ARM64" - # runner: "windows-2022-arm64" # Disabled due to very long queue times + - generator: "Visual Studio 17 2022" + flags: "-A ARM64" + name: "MSVC ARM64" + runner: "windows-11-arm" # githuh runner for WOA instance - generator: "MinGW Makefiles" flags: "" name: "MinGW" -- 2.47.2