From ca17f62bf4d447979731d7c949a0183956403b08 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 20 Jun 2026 21:46:59 +0000 Subject: [PATCH 1/2] Initial plan From 392265765cc03d45747d32f3c297f16da3f5495a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 20 Jun 2026 21:49:41 +0000 Subject: [PATCH 2/2] Disable test builds for non-runnable ARM64 SDK job --- .github/workflows/mwin32-sdk.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mwin32-sdk.yml b/.github/workflows/mwin32-sdk.yml index 88641d01..38e559c2 100644 --- a/.github/workflows/mwin32-sdk.yml +++ b/.github/workflows/mwin32-sdk.yml @@ -44,10 +44,12 @@ jobs: cmake_platform: x64 triplet: x64-windows can_run_tests: true + build_testing: "ON" - arch: arm64 cmake_platform: ARM64 triplet: arm64-windows can_run_tests: false + build_testing: "OFF" env: VCPKG_DEFAULT_TRIPLET: ${{ matrix.triplet }} VCPKG_TARGET_TRIPLET: ${{ matrix.triplet }} @@ -83,7 +85,7 @@ jobs: -A ${{ matrix.cmake_platform }} -D CMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -D VCPKG_TARGET_TRIPLET=${{ matrix.triplet }} - -D BUILD_TESTING=ON + -D BUILD_TESTING=${{ matrix.build_testing }} -B ${{ steps.strings.outputs.build-output-dir }} -S ${{ github.workspace }}