From c89288b267add9c30deb332da972fe96abdeef5b Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 22 Sep 2025 11:56:53 +0200 Subject: [PATCH] Add msvc-arm64 to CI Signed-off-by: falkTX --- .github/workflows/cmake.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 96ea8b72..3aa65f2b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -122,3 +122,23 @@ jobs: with: name: msvc-win64 path: build/bin/ + + msvc-arm64: + runs-on: windows-2022 + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - name: Configure CMake + run: | + cmake -S . -B build -G"Visual Studio 17 2022" -A"ARM64" -DCMAKE_BUILD_TYPE="Release" + - name: Build all + working-directory: build + run: cmake --build . --config "Release" -j 2 + - name: Show built files + working-directory: build/bin + run: tree + - uses: actions/upload-artifact@v4 + with: + name: msvc-arm64 + path: build/bin/