From 308324723cb8f10ef1e92b82b5d2bd7cd2cd1c0d Mon Sep 17 00:00:00 2001 From: Graham Pentheny Date: Sun, 8 Feb 2026 13:42:00 -0500 Subject: [PATCH] Specify x64 platform when building with Windows in github actions --- .github/workflows/Build.yaml | 2 +- .github/workflows/Tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index e5da1961..f81b0c47 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -164,7 +164,7 @@ jobs: - name: Build working-directory: RecastDemo/Build/${{matrix.vs-version}} - run: msbuild RecastDemo.vcxproj -property:Configuration=${{matrix.conf}} + run: msbuild RecastDemo.vcxproj -property:Configuration=${{matrix.conf}} -property:Platform=x64 windows-cmake: strategy: diff --git a/.github/workflows/Tests.yaml b/.github/workflows/Tests.yaml index bed6bab7..b9963646 100644 --- a/.github/workflows/Tests.yaml +++ b/.github/workflows/Tests.yaml @@ -96,7 +96,7 @@ jobs: - name: Build working-directory: RecastDemo/Build/vs2022 - run: msbuild Tests.vcxproj -property:Configuration=Debug + run: msbuild Tests.vcxproj -property:Configuration=Debug -property:Platform=x64 - name: Run Tests working-directory: RecastDemo/Bin/