2020-08-22 23:04:57 +02:00
|
|
|
name: 🍎 macOS Builds
|
2023-04-04 15:56:53 +02:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2020-10-22 13:27:03 +02:00
|
|
|
# Global Settings
|
2020-07-24 10:19:19 +02:00
|
|
|
env:
|
2022-08-25 14:11:54 +02:00
|
|
|
# Only used for the cache key. Increment version to force clean build.
|
2021-04-19 14:37:47 +02:00
|
|
|
GODOT_BASE_BRANCH: 3.x
|
2021-09-01 17:26:01 +02:00
|
|
|
SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-macos
|
|
|
|
cancel-in-progress: true
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
jobs:
|
2021-09-01 17:26:01 +02:00
|
|
|
build-macos:
|
2020-07-24 10:19:19 +02:00
|
|
|
runs-on: "macos-latest"
|
2021-09-01 17:26:01 +02:00
|
|
|
name: ${{ matrix.name }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- name: Editor (target=release_debug, tools=yes)
|
|
|
|
cache-name: macos-editor
|
|
|
|
target: release_debug
|
|
|
|
tools: true
|
|
|
|
bin: "./bin/godot.osx.opt.tools.64"
|
|
|
|
|
|
|
|
- name: Template (target=release, tools=no)
|
|
|
|
cache-name: macos-template
|
|
|
|
target: release
|
|
|
|
tools: false
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
steps:
|
2023-09-04 16:05:38 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2024-07-13 17:43:37 +02:00
|
|
|
- name: Restore Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache-restore
|
2020-07-24 10:19:19 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
cache-name: ${{ matrix.cache-name }}
|
2021-08-18 21:00:56 +02:00
|
|
|
continue-on-error: true
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Setup python and scons
|
|
|
|
uses: ./.github/actions/godot-deps
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
- name: Compilation
|
2021-09-01 17:26:01 +02:00
|
|
|
uses: ./.github/actions/godot-build
|
2020-07-24 10:19:19 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
sconsflags: ${{ env.SCONSFLAGS }}
|
|
|
|
platform: osx
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
tools: ${{ matrix.tools }}
|
2020-10-22 13:27:03 +02:00
|
|
|
|
2024-07-13 17:43:37 +02:00
|
|
|
- name: Save Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache-save
|
|
|
|
with:
|
|
|
|
cache-name: ${{ matrix.cache-name }}
|
|
|
|
continue-on-error: true
|
|
|
|
|
2022-08-25 14:11:54 +02:00
|
|
|
- name: Prepare artifact
|
|
|
|
run: |
|
|
|
|
strip bin/godot.*
|
|
|
|
chmod +x bin/godot.*
|
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: ./.github/actions/upload-artifact
|
2020-10-22 13:27:03 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
name: ${{ matrix.cache-name }}
|