Enable Windows 32bit builds

Closes #24
This commit is contained in:
Leroy Hopson 2021-07-03 15:15:01 +07:00 committed by Leroy Hopson
parent 0dd2378387
commit 964af715d6
4 changed files with 12 additions and 5 deletions

View file

@ -25,8 +25,6 @@ jobs:
bits: 64 # Currently only wasm32 is supported.
- platform: osx
bits: 32 # Only 64-bit supported on macOS.
- platform: windows
bits: 32 # TODO: Enable 32-bit build on windows-latest.
steps:
- uses: actions/checkout@v2
with:
@ -89,8 +87,10 @@ jobs:
- name: Install additional windows build dependencies
if: ${{ matrix.os == 'windows-latest' }}
run: python -m pip install scons
- uses: ilammy/msvc-dev-cmd@v1
- uses: ilammy/msvc-dev-cmd@v1.9.0
if: ${{ matrix.os == 'windows-latest' }}
with:
arch: win${{ matrix.bits }}
- name: Build godot-cpp bindings
if: steps.cache.outputs.cache-hit != 'true'