-
Notifications
You must be signed in to change notification settings - Fork 84
41 lines (41 loc) · 1.21 KB
/
ios_builds.yml
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
name: 🍏 iOS Builds
'on':
- push
- pull_request
env:
GODOT_BASE_BRANCH: "4.0"
SCONSFLAGS: verbose=yes warnings=extra debug_symbols=no module_text_server_fb_enabled=yes
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:
- name: Checkout Godot
uses: actions/checkout@v2
with:
repository: godotengine/godot
ref: ${{ env.GODOT_BASE_BRANCH }}
- name: Checkout ECMAScript
uses: actions/checkout@v2
with:
path: ${{github.workspace}}/modules/javascript/
- name: Setup Godot build cache
uses: ./.github/actions/godot-cache
continue-on-error: true
- name: Setup python and scons
uses: ./modules/javascript/.github/actions/godot-deps
with:
shell: sh
- name: Compilation (armv7)
uses: ./modules/javascript/.github/actions/godot-build
with:
sconsflags: ${{ env.SCONSFLAGS }}
platform: ios
target: template_release
tools: false
shell: sh
- name: Upload artifact
uses: ./.github/actions/upload-artifact