-
Notifications
You must be signed in to change notification settings - Fork 3
85 lines (71 loc) · 2.44 KB
/
mac.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: 🍎 macOS Builds
on:
push:
branches: [ master, github_actions ]
pull_request:
branches: [ master ]
# Global Settings
env:
# Used for the cache key. Add version suffix to force clean build.
GODOT_BASE_BRANCH: master
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-macos
cancel-in-progress: true
jobs:
build-macos:
runs-on: "macos-latest"
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Editor (target=editor, tests=yes)
cache-name: mac-editor-cache
target: editor
- name: Template (target=template_release)
cache-name: macos-template
target: template_release
sconsflags: debug_symbols=no
steps:
- uses: actions/checkout@v4
with:
repository: godotengine/godot
- uses: actions/checkout@v4
with:
path: modules/rwkv
# init submodules in the rwkv module
- name: Init submodules
run: |
cd modules/rwkv
git submodule update --init --recursive
cd ../..
- name: Load .scons_cache directory
id: godot-cache
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/${{matrix.target}}/
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}-${{matrix.target}}
restore-keys: |
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}-${{matrix.target}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}
- name: Setup python and scons
uses: ./.github/actions/godot-deps
- name: Setup Vulkan SDK
run: |
sh misc/scripts/install_vulkan_sdk_macos.sh
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/${{matrix.target}}/
run: |
scons arch=arm64 target=${{ matrix.target }} ${{ matrix.sconsflags }} -j4
- name: Prepare artifact
run: |
strip bin/godot.*
chmod +x bin/godot.*
- uses: actions/upload-artifact@v2
with:
name: build
path: bin/