CI: Default to MSVC x64 toolset

ScummVM has become too big for the 32-bit linker, so default to the 64-bit linker to avoid random failures and restarts.
This doesn't affect the architecture of the output (eg. a x64 compiler can build a x86 executable).
This commit is contained in:
SupSuper 2020-08-25 10:00:32 +01:00
parent bcb7d1f30c
commit 5ba0416765

View File

@ -70,7 +70,7 @@ jobs:
run: |
cd build-scummvm
ls
msbuild scummvm.sln /m /p:BuildInParallel=true /p:Configuration=Release /p:Platform=${{ matrix.platform }}
msbuild scummvm.sln /m /p:BuildInParallel=true /p:Configuration=Release /p:PreferredToolArchitecture=x64 /p:Platform=${{ matrix.platform }}
- name: Upload scummvm
uses: actions/upload-artifact@v2
with: