2020-08-22 23:04:57 +02:00
|
|
|
name: 🍏 iOS Builds
|
2020-07-25 21:55:49 +02:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
2020-10-09 22:18:51 +02:00
|
|
|
# Global Settings
|
2020-07-25 21:55:49 +02:00
|
|
|
env:
|
2022-03-23 08:04:46 +01:00
|
|
|
# Only used for the cache key. Increment version to force clean build.
|
2020-07-25 21:55:49 +02:00
|
|
|
GODOT_BASE_BRANCH: master
|
2021-09-01 17:26:01 +02:00
|
|
|
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes
|
2020-07-25 21:55:49 +02:00
|
|
|
|
2021-08-24 20:49:06 +02:00
|
|
|
concurrency:
|
2021-08-25 15:04:05 +02:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-ios
|
2021-08-24 20:49:06 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-25 21:55:49 +02:00
|
|
|
jobs:
|
|
|
|
ios-template:
|
|
|
|
runs-on: "macos-latest"
|
|
|
|
name: Template (target=release, tools=no)
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Setup Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache
|
2021-08-18 21:00:56 +02:00
|
|
|
continue-on-error: true
|
2020-07-25 21:55:49 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Setup python and scons
|
|
|
|
uses: ./.github/actions/godot-deps
|
|
|
|
|
2022-02-08 22:09:30 +01:00
|
|
|
- name: Compilation (arm64v8)
|
2021-09-01 17:26:01 +02:00
|
|
|
uses: ./.github/actions/godot-build
|
2020-09-29 23:42:41 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
sconsflags: ${{ env.SCONSFLAGS }}
|
|
|
|
platform: iphone
|
|
|
|
target: release
|
|
|
|
tools: false
|
|
|
|
tests: false
|
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: ./.github/actions/upload-artifact
|