From e2523979a9e123b449833aea5250490130b12bbc Mon Sep 17 00:00:00 2001 From: MUGUNDAN Date: Thu, 5 Mar 2026 08:06:18 +0530 Subject: [PATCH] Add support for building and testing Windows ARM64 --- .github/workflows/ci.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b4373c00..cdf67a42 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -115,8 +115,12 @@ jobs: permissive: - false - true - - runs-on: windows-2022 + arch: + - name: "x64" + runner: "windows-2022" + - name: "arm64" + runner: "windows-11-arm" + runs-on: ${{ matrix.arch.runner }} defaults: run: @@ -131,6 +135,8 @@ jobs: - uses: actions/checkout@v3 - uses: ilammy/msvc-dev-cmd@v1 + with: + arch: ${{ matrix.arch.name }} - name: Configure Meson run: meson setup build --vsenv --buildtype=${{ matrix.type }} -Ddevel=true -Db_lto=false -Dpermissive=${{ matrix.permissive }}