limboai/.github/workflows/ios.yml

190 lines
5.4 KiB
YAML
Raw Normal View History

2023-08-01 10:47:53 +00:00
name: 🍏 iOS builds
on:
workflow_call:
inputs:
godot_treeish:
description: A tag, branch or commit hash in the Godot repository.
type: string
default: master
limboai_treeish:
description: A tag, branch or commit hash in the LimboAI repository.
type: string
default: master
workflow_dispatch:
inputs:
godot_treeish:
description: A tag, branch or commit hash in the Godot repository.
type: string
default: master
limboai_treeish:
description: A tag, branch or commit hash in the LimboAI repository.
type: string
default: master
# Global Settings
env:
SCONS_CACHE_LIMIT: 4096
SCONSFLAGS: production=yes tests=no verbose=yes warnings=extra werror=yes
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
ios-builds:
runs-on: "macos-latest"
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Template (arm64, release)
target: template_release
arch: arm64
ios_simulator: false
- name: Template (arm64, debug)
target: template_debug
arch: arm64
ios_simulator: false
- name: Simulator Lib (x86_64, release)
target: template_release
arch: x86_64
ios_simulator: true
- name: Simulator Lib (x86_64, debug)
target: template_debug
arch: x86_64
ios_simulator: true
- name: Simulator Lib (arm64, release)
target: template_release
arch: arm64
ios_simulator: true
- name: Simulator Lib (arm64, debug)
target: template_debug
arch: arm64
ios_simulator: true
env:
BIN: godot.ios.${{matrix.target}}.${{matrix.arch}}
steps:
- name: Clone Godot
uses: actions/checkout@v3
with:
repository: godotengine/godot
ref: ${{ inputs.godot_treeish }}
- name: Clone LimboAI module
uses: actions/checkout@v3
with:
path: modules/limboai
ref: ${{ inputs.limboai_treeish }}
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: Set up scons
2023-08-01 10:47:53 +00:00
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons==4.4.0
- name: Diagnostics
run: |
python --version
scons --version
dotnet --info
- name: Set up Vulkan SDK
2023-08-01 10:47:53 +00:00
run: |
sh misc/scripts/install_vulkan_sdk_macos.sh
- name: Set up scons cache
2023-08-01 10:47:53 +00:00
uses: actions/cache@v3
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{matrix.cache-name}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{env.BIN}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{env.BIN}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}
${{env.BIN}}-${{env.GODOT_BASE_BRANCH}}
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=ios target=${{matrix.target}} arch=${{matrix.arch}} ios_simulator=${{matrix.ios_simulator}} ${{env.SCONSFLAGS}}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ios-templates
path: bin/*
package-ios-templates:
runs-on: "macos-latest"
name: Package iOS templates
needs: ios-builds
steps:
- name: Clone Godot
uses: actions/checkout@v3
with:
repository: godotengine/godot
ref: ${{ inputs.godot_treeish }}
- name: Set up Vulkan SDK
2023-08-01 10:47:53 +00:00
run: |
sh misc/scripts/install_vulkan_sdk_macos.sh
- name: Download templates artifact
2023-08-01 10:47:53 +00:00
uses: actions/download-artifact@v3
with:
name: ios-templates
path: bin/
- name: Make template bundle
run: |
ls bin/
cp -r misc/dist/ios_xcode bin/
cd bin/
strip *.a
mv libgodot.ios.template_debug.arm64.a ios_xcode/libgodot.ios.debug.xcframework/ios-arm64/libgodot.a
lipo -create libgodot.ios.template_debug.arm64.simulator.a libgodot.ios.template_debug.x86_64.simulator.a -output ios_xcode/libgodot.ios.debug.xcframework/ios-arm64_x86_64-simulator/libgodot.a
mv libgodot.ios.template_release.arm64.a ios_xcode/libgodot.ios.release.xcframework/ios-arm64/libgodot.a
lipo -create libgodot.ios.template_release.arm64.simulator.a libgodot.ios.template_release.x86_64.simulator.a -output ios_xcode/libgodot.ios.release.xcframework/ios-arm64_x86_64-simulator/libgodot.a
cp -r ~/VulkanSDK/*/MoltenVK/MoltenVK.xcframework ios_xcode
rm -rf ios_xcode/MoltenVK.xcframework/{macos,tvos}*
mkdir -p ${{github.workspace}}/out/templates/
cd ios_xcode
zip -q -9 -r ${{github.workspace}}/out/templates/ios.zip *
ls -l ${{github.workspace}}/out/*
- name: Upload template bundle
2023-08-01 10:47:53 +00:00
uses: actions/upload-artifact@v3
with:
name: godot.limboai.export-templates
path: out/*
- name: Delete templates artifact
uses: geekyeggo/delete-artifact@v2
2023-08-01 10:47:53 +00:00
with:
name: ios-templates
failOnError: false