From 624558a4aae25b1914405a333094f8bf1ed89cd6 Mon Sep 17 00:00:00 2001 From: JoergAtGithub <64457745+JoergAtGithub@users.noreply.github.com> Date: Tue, 2 Dec 2025 20:32:01 +0100 Subject: [PATCH] Add Windows 11 ARM configuration to CI workflow see https://github.com/actions/partner-runner-images/blob/main/images/arm-windows-11-image.md for more info baout this GitHub runner. --- .github/workflows/cmake.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index ebe185b..84f5a22 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -30,6 +30,7 @@ jobs: { os: macos-15, c_compiler: cc, cpp_compiler: c++, cmake_args: "-DSYSTEM_SQLITE=OFF" }, { os: windows-2022, c_compiler: cl, cpp_compiler: cl }, { os: windows-2025, c_compiler: cl, cpp_compiler: cl }, + { os: windows-11-arm, c_compiler: cl, cpp_compiler: cl }, ] runs-on: ${{ matrix.config.os }}