Merge pull request #98864 from akien-mga/3.4-ci-build-warning-fixes #67494
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: 🍏 iOS Builds | |
on: [push, pull_request] | |
# Global Settings | |
env: | |
GODOT_BASE_BRANCH: 3.4 | |
SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no | |
concurrency: | |
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-ios | |
cancel-in-progress: true | |
jobs: | |
ios-template: | |
runs-on: "macos-latest" | |
name: Template (target=release, tools=no) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Godot build cache | |
uses: ./.github/actions/godot-cache | |
continue-on-error: true | |
- name: Setup python and scons | |
uses: ./.github/actions/godot-deps | |
- name: Compilation (armv7) | |
uses: ./.github/actions/godot-build | |
with: | |
sconsflags: ${{ env.SCONSFLAGS }} | |
platform: iphone | |
target: release | |
tools: false | |
- name: Upload artifact | |
uses: ./.github/actions/upload-artifact |