2023-07-29 21:16:10 +00:00
|
|
|
name: 🍎 macOS builds
|
2023-07-29 09:27:29 +00:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2023-07-29 18:14:56 +00:00
|
|
|
inputs:
|
2024-03-10 16:23:59 +00:00
|
|
|
godot-ref:
|
2023-07-29 18:14:56 +00:00
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2024-03-10 16:23:59 +00:00
|
|
|
limboai-ref:
|
2023-07-29 18:14:56 +00:00
|
|
|
description: A tag, branch or commit hash in the LimboAI repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-12-29 13:58:45 +00:00
|
|
|
test-build:
|
2023-12-29 14:22:33 +00:00
|
|
|
description: Should we perform only a limited number of test builds?
|
2023-12-29 13:58:45 +00:00
|
|
|
type: boolean
|
|
|
|
default: false
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
workflow_dispatch:
|
2023-07-29 18:14:56 +00:00
|
|
|
inputs:
|
2024-03-10 16:23:59 +00:00
|
|
|
godot-ref:
|
2023-07-29 18:14:56 +00:00
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2024-03-10 16:23:59 +00:00
|
|
|
limboai-ref:
|
2023-07-29 18:14:56 +00:00
|
|
|
description: A tag, branch or commit hash in the LimboAI repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-12-29 13:58:45 +00:00
|
|
|
test-build:
|
2023-12-29 14:22:33 +00:00
|
|
|
description: Should we perform only a limited number of test builds?
|
2023-12-29 13:58:45 +00:00
|
|
|
type: boolean
|
|
|
|
default: false
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
# Global Settings
|
|
|
|
env:
|
|
|
|
SCONS_CACHE_LIMIT: 4096
|
2024-04-08 16:02:33 +00:00
|
|
|
SCONSFLAGS: production=yes tests=no verbose=yes warnings=extra
|
2023-07-29 09:27:29 +00:00
|
|
|
DOTNET_NOLOGO: true
|
|
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
macos-builds:
|
|
|
|
runs-on: "macos-latest"
|
2023-12-29 13:58:45 +00:00
|
|
|
name: ${{ matrix.opts.name }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-12-29 13:58:45 +00:00
|
|
|
opts:
|
2023-07-29 09:27:29 +00:00
|
|
|
- name: Editor (x86_64, release)
|
|
|
|
target: editor
|
|
|
|
arch: x86_64
|
2024-04-08 16:02:33 +00:00
|
|
|
dotnet: false
|
2023-12-29 13:58:45 +00:00
|
|
|
should-build: true
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
- name: Template (x86_64, release)
|
|
|
|
target: template_release
|
|
|
|
arch: x86_64
|
2024-04-08 16:02:33 +00:00
|
|
|
dotnet: false
|
2023-12-29 13:58:45 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
- name: Template (x86_64, debug)
|
|
|
|
target: template_debug
|
|
|
|
arch: x86_64
|
2024-04-08 16:02:33 +00:00
|
|
|
dotnet: false
|
2023-12-29 13:58:45 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
- name: Editor (arm64, release)
|
|
|
|
target: editor
|
|
|
|
arch: arm64
|
2024-04-08 16:02:33 +00:00
|
|
|
dotnet: false
|
2023-12-29 15:09:26 +00:00
|
|
|
should-build: true
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
- name: Template (arm64, release)
|
|
|
|
target: template_release
|
|
|
|
arch: arm64
|
2024-04-08 16:02:33 +00:00
|
|
|
dotnet: false
|
2023-12-29 13:58:45 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
- name: Template (arm64, debug)
|
|
|
|
target: template_debug
|
|
|
|
arch: arm64
|
2024-04-08 16:02:33 +00:00
|
|
|
dotnet: false
|
2023-12-29 13:58:45 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
2024-04-08 16:02:33 +00:00
|
|
|
- name: .NET Editor (x86_64, release)
|
|
|
|
target: editor
|
|
|
|
arch: x86_64
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: .NET Template (x86_64, release)
|
|
|
|
target: template_release
|
|
|
|
arch: x86_64
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: .NET Template (x86_64, debug)
|
|
|
|
target: template_debug
|
|
|
|
arch: x86_64
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: .NET Editor (arm64, release)
|
|
|
|
target: editor
|
|
|
|
arch: arm64
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: .NET Template (arm64, release)
|
|
|
|
target: template_release
|
|
|
|
arch: arm64
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: .NET Template (arm64, debug)
|
|
|
|
target: template_debug
|
|
|
|
arch: arm64
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-12-29 13:58:45 +00:00
|
|
|
|
|
|
|
exclude:
|
2024-03-10 13:24:56 +00:00
|
|
|
- { opts: { should-build: false } }
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
env:
|
2024-04-08 16:02:33 +00:00
|
|
|
BIN: godot.macos.${{matrix.opts.target}}.${{matrix.opts.arch}}${{ matrix.opts.dotnet == true && '.mono' || '' }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
steps:
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Clone Godot
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-07-29 09:27:29 +00:00
|
|
|
with:
|
|
|
|
repository: godotengine/godot
|
2024-03-10 16:23:59 +00:00
|
|
|
ref: ${{ inputs.godot-ref }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Clone LimboAI module
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-07-29 09:27:29 +00:00
|
|
|
with:
|
|
|
|
path: modules/limboai
|
2024-03-10 16:23:59 +00:00
|
|
|
ref: ${{ inputs.limboai-ref }}
|
2023-07-29 09:27:29 +00:00
|
|
|
|
2023-08-02 18:51:22 +00:00
|
|
|
# Inits GODOT_VERSION, LIMBOAI_VERSION and NAME_PREFIX environment variables.
|
|
|
|
- uses: ./modules/limboai/.github/actions/init-version
|
|
|
|
|
2023-07-29 09:27:29 +00:00
|
|
|
- name: Set up Python 3.x
|
2024-03-10 13:24:56 +00:00
|
|
|
uses: actions/setup-python@v5
|
2023-07-29 09:27:29 +00:00
|
|
|
with:
|
2024-03-10 13:24:56 +00:00
|
|
|
python-version: "3.x"
|
|
|
|
architecture: "x64"
|
2023-07-29 09:27:29 +00:00
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Set up scons
|
2023-07-29 09:27:29 +00:00
|
|
|
run: |
|
|
|
|
python -c "import sys; print(sys.version)"
|
|
|
|
python -m pip install scons==4.4.0
|
|
|
|
|
2024-04-08 16:02:33 +00:00
|
|
|
- name: Set up .NET SDK 6.0
|
|
|
|
if: matrix.opts.dotnet
|
|
|
|
uses: actions/setup-dotnet@v4
|
|
|
|
with:
|
|
|
|
dotnet-version: "6.0.x"
|
|
|
|
|
2023-07-29 09:27:29 +00:00
|
|
|
- name: Diagnostics
|
|
|
|
run: |
|
|
|
|
python --version
|
|
|
|
scons --version
|
|
|
|
dotnet --info
|
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Set up Vulkan SDK
|
2023-07-29 09:27:29 +00:00
|
|
|
run: |
|
|
|
|
sh misc/scripts/install_vulkan_sdk_macos.sh
|
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Set up scons cache
|
2024-03-10 13:24:56 +00:00
|
|
|
uses: actions/cache@v4
|
2023-07-31 20:45:24 +00:00
|
|
|
with:
|
|
|
|
path: ${{github.workspace}}/.scons_cache/
|
2024-03-10 16:23:59 +00:00
|
|
|
key: ${{env.BIN}}-${{inputs.godot-ref}}-${{inputs.limboai-ref}}-${{env.LIMBOAI_VERSION}}
|
2023-07-31 20:45:24 +00:00
|
|
|
restore-keys: |
|
2024-03-10 16:23:59 +00:00
|
|
|
${{env.BIN}}-${{inputs.godot-ref}}-${{inputs.limboai-ref}}-${{env.LIMBOAI_VERSION}}
|
|
|
|
${{env.BIN}}-${{inputs.godot-ref}}-${{inputs.limboai-ref}}
|
|
|
|
${{env.BIN}}-${{inputs.godot-ref}}
|
2023-07-31 20:45:24 +00:00
|
|
|
|
2023-07-29 09:27:29 +00:00
|
|
|
- name: Compilation
|
|
|
|
env:
|
|
|
|
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
|
|
|
run: |
|
2024-04-08 16:02:33 +00:00
|
|
|
scons -j2 platform=macos target=${{matrix.opts.target}} arch=${{matrix.opts.arch}} module_mono_enabled=${{matrix.opts.dotnet}} ${{env.SCONSFLAGS}}
|
2023-07-29 18:14:56 +00:00
|
|
|
|
2024-04-08 16:02:33 +00:00
|
|
|
- name: Generate C# glue
|
|
|
|
if: matrix.opts.dotnet && matrix.opts.target == 'editor' && matrix.opts.arch == 'x86_64'
|
|
|
|
env:
|
|
|
|
GODOT_VERSION_STATUS: limboai
|
|
|
|
run: |
|
|
|
|
./bin/$BIN --headless --generate-mono-glue ./modules/mono/glue || true
|
2023-07-29 09:27:29 +00:00
|
|
|
|
2024-04-08 16:02:33 +00:00
|
|
|
- name: Build .NET solutions
|
|
|
|
if: matrix.opts.dotnet && matrix.opts.target == 'editor' && matrix.opts.arch == 'x86_64'
|
|
|
|
env:
|
|
|
|
GODOT_VERSION_STATUS: limboai
|
|
|
|
run: |
|
|
|
|
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=macos
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
- name: Prepare artifact
|
|
|
|
run: |
|
|
|
|
strip bin/godot.*
|
|
|
|
chmod +x bin/godot.*
|
|
|
|
|
|
|
|
- name: Upload artifact
|
2024-03-10 16:23:59 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-07-29 09:27:29 +00:00
|
|
|
with:
|
2024-04-08 16:02:33 +00:00
|
|
|
name: tmp-${{matrix.opts.dotnet == true && 'dotnet-' || ''}}macos-${{matrix.opts.target}}-${{matrix.opts.arch}}
|
2023-07-29 09:27:29 +00:00
|
|
|
path: bin/*
|
2023-07-29 18:14:56 +00:00
|
|
|
|
|
|
|
make-macos-bundle:
|
|
|
|
runs-on: "macos-latest"
|
|
|
|
name: Make macOS Bundles
|
|
|
|
needs: macos-builds
|
|
|
|
|
2024-04-08 16:02:33 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
opts:
|
|
|
|
- download-prefix: tmp-macos
|
|
|
|
dotnet: false
|
|
|
|
should-build: true
|
|
|
|
- download-prefix: tmp-dotnet-macos
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
exclude:
|
|
|
|
- { opts: { should-build: false } }
|
|
|
|
|
2023-07-29 18:14:56 +00:00
|
|
|
steps:
|
|
|
|
- name: Clone Godot
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-07-29 18:14:56 +00:00
|
|
|
with:
|
|
|
|
repository: godotengine/godot
|
2024-03-10 16:23:59 +00:00
|
|
|
ref: ${{ inputs.godot-ref }}
|
2023-07-29 18:14:56 +00:00
|
|
|
|
2023-08-02 16:50:17 +00:00
|
|
|
- name: Clone LimboAI module
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-08-02 16:50:17 +00:00
|
|
|
with:
|
|
|
|
path: modules/limboai
|
2024-03-10 16:23:59 +00:00
|
|
|
ref: ${{ inputs.limboai-ref }}
|
2023-08-02 16:50:17 +00:00
|
|
|
|
|
|
|
# Inits GODOT_VERSION, LIMBOAI_VERSION and NAME_PREFIX environment variables.
|
|
|
|
- uses: ./modules/limboai/.github/actions/init-version
|
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Download editor artifact
|
2024-03-10 16:23:59 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2023-07-29 18:14:56 +00:00
|
|
|
with:
|
2024-04-08 16:02:33 +00:00
|
|
|
pattern: ${{matrix.opts.download-prefix}}-editor-*
|
2024-03-10 16:23:59 +00:00
|
|
|
merge-multiple: true
|
2023-07-29 18:14:56 +00:00
|
|
|
path: bin/
|
|
|
|
|
2023-12-16 13:03:34 +00:00
|
|
|
# Zipping the editor bundle to retain executable bit;
|
|
|
|
# workaround for: https://github.com/actions/upload-artifact/issues/38
|
2023-07-29 18:14:56 +00:00
|
|
|
- name: Make editor bundle
|
2024-04-08 16:02:33 +00:00
|
|
|
env:
|
|
|
|
APP_NAME: Godot${{matrix.opts.dotnet == true && '_mono' || ''}}.app
|
2023-07-29 18:14:56 +00:00
|
|
|
run: |
|
|
|
|
ls bin/
|
2024-04-08 16:02:33 +00:00
|
|
|
lipo -create bin/godot.macos.editor.x86_64* bin/godot.macos.editor.arm64* -output bin/godot.macos.editor.universal
|
|
|
|
du -sh bin/
|
2023-07-29 18:14:56 +00:00
|
|
|
strip bin/godot.macos.editor.universal
|
2024-04-08 16:02:33 +00:00
|
|
|
du -sh bin/
|
2023-07-29 18:14:56 +00:00
|
|
|
mkdir -p out/editor/
|
2024-04-08 16:02:33 +00:00
|
|
|
cp -r misc/dist/macos_tools.app out/editor/${APP_NAME}
|
|
|
|
mkdir -p out/editor/${APP_NAME}/Contents/{MacOS,Resources}
|
|
|
|
cp bin/godot.macos.editor.universal out/editor/${APP_NAME}/Contents/MacOS/Godot
|
|
|
|
chmod +x out/editor/${APP_NAME}/Contents/MacOS/Godot
|
|
|
|
cp -r bin/GodotSharp out/editor/${APP_NAME}/Contents/Resources/GodotSharp || true
|
2023-12-16 13:03:34 +00:00
|
|
|
pushd out/editor
|
2024-04-08 16:02:33 +00:00
|
|
|
zip -q -9 -r ${APP_NAME}.zip ${APP_NAME}
|
|
|
|
rm -rf ${APP_NAME}
|
2023-12-16 13:03:34 +00:00
|
|
|
echo -e "## Why another ZIP inside?\n\nWorkaround for: https://github.com/actions/upload-artifact/issues/38\n" > README.md
|
|
|
|
popd
|
2024-04-08 16:02:33 +00:00
|
|
|
rm -rf bin/*
|
2023-07-29 21:16:10 +00:00
|
|
|
ls out/editor/
|
2023-07-29 18:14:56 +00:00
|
|
|
|
|
|
|
- name: Upload editor bundle
|
2024-03-10 16:23:59 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-07-29 18:14:56 +00:00
|
|
|
with:
|
2024-04-08 16:02:33 +00:00
|
|
|
name: ${{env.NAME_PREFIX}}${{matrix.opts.dotnet == true && '.dotnet' || ''}}.editor.macos.universal
|
2023-07-29 18:14:56 +00:00
|
|
|
path: out/editor/*
|
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Download templates artifact
|
2023-12-29 15:09:26 +00:00
|
|
|
if: ${{ !inputs.test-build }}
|
2024-03-10 16:23:59 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2023-07-29 18:14:56 +00:00
|
|
|
with:
|
2024-04-08 16:02:33 +00:00
|
|
|
pattern: ${{matrix.opts.download-prefix}}-template_*
|
2024-03-10 16:23:59 +00:00
|
|
|
merge-multiple: true
|
2023-07-29 18:14:56 +00:00
|
|
|
path: bin/
|
|
|
|
|
|
|
|
- name: Make templates bundle
|
2023-12-29 15:09:26 +00:00
|
|
|
if: ${{ !inputs.test-build }}
|
2023-07-29 18:14:56 +00:00
|
|
|
run: |
|
2023-08-01 15:31:53 +00:00
|
|
|
rm -rf out/
|
2023-07-29 18:14:56 +00:00
|
|
|
ls bin/
|
2024-04-08 16:02:33 +00:00
|
|
|
lipo -create bin/godot.macos.template_release.x86_64* bin/godot.macos.template_release.arm64* -output bin/godot.macos.template_release.universal
|
|
|
|
lipo -create bin/godot.macos.template_debug.x86_64* bin/godot.macos.template_debug.arm64* -output bin/godot.macos.template_debug.universal
|
|
|
|
strip bin/godot.*.universal
|
2023-07-29 18:14:56 +00:00
|
|
|
cp -r misc/dist/macos_template.app macos_template.app
|
|
|
|
mkdir -p macos_template.app/Contents/MacOS
|
|
|
|
cp bin/godot.macos.template_debug.universal macos_template.app/Contents/MacOS/godot_macos_debug.universal
|
|
|
|
cp bin/godot.macos.template_release.universal macos_template.app/Contents/MacOS/godot_macos_release.universal
|
|
|
|
chmod +x macos_template.app/Contents/MacOS/godot_macos_{release,debug}.universal
|
2024-04-08 16:02:33 +00:00
|
|
|
zip -q -9 -r macos.zip macos_template.app
|
2023-07-29 18:14:56 +00:00
|
|
|
mkdir -p out/templates/
|
|
|
|
mv macos.zip out/templates/macos.zip
|
2023-11-29 13:32:30 +00:00
|
|
|
echo "${GODOT_VERSION}.limboai+${LIMBOAI_VERSION}" > out/templates/version.txt
|
2024-04-08 16:02:33 +00:00
|
|
|
rm -rf bin/*
|
2023-07-29 21:16:10 +00:00
|
|
|
ls out/templates/
|
2023-07-29 18:14:56 +00:00
|
|
|
|
2024-03-26 17:49:26 +00:00
|
|
|
- uses: geekyeggo/delete-artifact@v5
|
2023-07-30 08:57:57 +00:00
|
|
|
with:
|
2024-04-08 16:02:33 +00:00
|
|
|
name: ${{matrix.opts.download-prefix}}-*
|
2024-03-10 16:23:59 +00:00
|
|
|
useGlob: true
|
|
|
|
failOnError: false
|
2023-07-30 08:57:57 +00:00
|
|
|
|
2023-07-29 18:14:56 +00:00
|
|
|
- name: Upload templates bundle
|
2023-12-29 15:09:26 +00:00
|
|
|
if: ${{ !inputs.test-build }}
|
2024-03-10 16:23:59 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-07-29 18:14:56 +00:00
|
|
|
with:
|
2024-04-08 16:02:33 +00:00
|
|
|
name: ${{env.NAME_PREFIX}}${{matrix.opts.dotnet == true && '.dotnet' || ''}}.export-templates.macos
|
2023-08-01 15:31:53 +00:00
|
|
|
path: out/*
|