From 606abaec970d3fc29cf7f76c37bbe4080b6bccba Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 3 Nov 2024 17:38:45 +0100 Subject: [PATCH] Build all samples in non-ARM GitHub MSW CI job We can't do this when targeting ARM because all projects don't have ARM configurations in them. To add them would require making the same changes to all the 100+ projects as were done in f825661df1 (Improve ARM64 support in wxMSW, 2024-06-14) in minimal.vcxproj, which will have to wait until someone has time to automate it. --- .github/workflows/ci_msw.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_msw.yml b/.github/workflows/ci_msw.yml index ed12e86b07..ab53673644 100644 --- a/.github/workflows/ci_msw.yml +++ b/.github/workflows/ci_msw.yml @@ -107,9 +107,10 @@ jobs: $dlldir | Out-File -Append $env:GITHUB_PATH } - - name: Build minimal sample + - name: Build samples + if: matrix.platform != 'arm64' run: | - msbuild /noLogo /m '/p:Configuration=${{ matrix.configuration }}' /p:Platform=${{ matrix.platform }} samples\minimal\minimal_vc16.sln + msbuild /noLogo /m '/p:Configuration=${{ matrix.configuration }}' /p:Platform=${{ matrix.platform }} samples\samples_vc16.sln - name: Build tests run: |