Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
target:
[
{ platform: linux, arch: x86_64, os: ubuntu-22.04 },
{ platform: windows, arch: x86_64, os: windows-latest },
{ platform: windows, arch: x86_32, os: windows-latest },
{ platform: windows, arch: x86_64, os: ubuntu-22.04 },
{ platform: windows, arch: x86_32, os: ubuntu-22.04 },
{ platform: macos, arch: universal, os: macos-latest },
{ platform: android, arch: arm64, os: ubuntu-22.04 },
{ platform: android, arch: arm32, os: ubuntu-22.04 },
Expand Down Expand Up @@ -61,6 +61,7 @@ jobs:
with:
platform: ${{ matrix.target.platform }}
em-version: 3.1.62
mingw-version: "" # Use package manager default
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The input's default (12.2.0) is not available on Ubuntu 22.04. Empty string causes setup-mingw to use the package manager default.


# Build GDExtension (with caches)
- name: Cache .scons_cache
Expand All @@ -73,7 +74,7 @@ jobs:
env:
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
run: |
scons target=${{ matrix.target-type }} platform=${{ matrix.target.platform }} arch=${{ matrix.target.arch }} precision=${{ matrix.float-precision }}
scons use_mingw=yes target=${{ matrix.target-type }} platform=${{ matrix.target.platform }} arch=${{ matrix.target.arch }} precision=${{ matrix.float-precision }}

# Sign the binary (macOS only)
- name: Mac Sign
Expand Down