Build GDExtension #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build GDExtension | |
on: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
# Double float precision builds are not needed by default; | |
# whoever needs them can recompile, but it would blow up our release zip to include them. | |
float-precision: [single] | |
build-target-type: [template_debug, template_release] | |
include: | |
- platform: linux | |
arch: x86_64 | |
os: ubuntu-20.04 | |
- platform: windows | |
arch: x86_32 | |
os: windows-latest | |
- platform: windows | |
arch: x86_64 | |
os: windows-latest | |
- platform: macos | |
arch: universal | |
os: macos-latest | |
- platform: android | |
arch: arm64 | |
os: ubuntu-20.04 | |
- platform: android | |
arch: arm32 | |
os: ubuntu-20.04 | |
- platform: android | |
arch: x86_64 | |
os: ubuntu-20.04 | |
- platform: android | |
arch: x86_32 | |
os: ubuntu-20.04 | |
- platform: ios | |
arch: arm64 | |
os: macos-latest | |
- platform: web | |
arch: wasm32 | |
os: ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: 🔗 GDExtension Build | |
uses: godotengine/godot-cpp-template/.github/actions/build@main | |
with: | |
platform: ${{ matrix.platform }} | |
arch: ${{ matrix.arch }} | |
float-precision: ${{ matrix.float-precision }} | |
build-target-type: ${{ matrix.build-target-type }} | |
gdextension-directory: '' | |
em_version: '3.1.55' # FIXME Doesn't compile on the newest, xtensor has problems | |
- name: Mac Sign | |
if: ${{ matrix.platform == 'macos' && env.APPLE_CERT_BASE64 }} | |
env: | |
APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }} | |
uses: godotengine/godot-cpp-template/.github/actions/sign@main | |
with: | |
FRAMEWORK_PATH: build/addons/numdot/macos/numdot-macos.framework | |
APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }} | |
APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }} | |
APPLE_DEV_PASSWORD: ${{ secrets.APPLE_DEV_PASSWORD }} | |
APPLE_DEV_ID: ${{ secrets.APPLE_DEV_ID }} | |
APPLE_DEV_TEAM_ID: ${{ secrets.APPLE_DEV_TEAM_ID }} | |
APPLE_DEV_APP_ID: ${{ secrets.APPLE_DEV_APP_ID }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: GDExtension-${{ matrix.platform }}-${{ matrix.arch }} | |
path: | | |
${{ github.workspace }}/build/** | |
merge: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Merge Artifacts | |
uses: actions/upload-artifact/merge@v4 | |
with: | |
name: GDExtension-all | |
pattern: GDExtension-* | |
delete-merged: true |