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:
parent
bcb7d1f30c
commit
5ba0416765
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -70,7 +70,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd build-scummvm
|
cd build-scummvm
|
||||||
ls
|
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
|
- name: Upload scummvm
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue