From 5ba0416765089cc370029b59575abfd9296a1b6c Mon Sep 17 00:00:00 2001 From: SupSuper Date: Tue, 25 Aug 2020 10:00:32 +0100 Subject: [PATCH] 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). --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 329c659d470..a1af3e0586f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: