Skip to content

Commit 22b6f1a

Browse files
committed
[tvOS] GitHub workflow
1 parent e6fb840 commit 22b6f1a

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/tvos_builds.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 📺 tvOS Builds
2+
on: [push, pull_request]
3+
4+
# Global Settings
5+
env:
6+
GODOT_BASE_BRANCH: master
7+
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes
8+
9+
concurrency:
10+
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-tvos
11+
cancel-in-progress: true
12+
13+
jobs:
14+
tvos-template:
15+
runs-on: "macos-latest"
16+
name: Template (target=release, tools=no)
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
21+
- name: Setup Godot build cache
22+
uses: ./.github/actions/godot-cache
23+
continue-on-error: true
24+
25+
- name: Setup python and scons
26+
uses: ./.github/actions/godot-deps
27+
28+
- name: Compilation (armv7)
29+
uses: ./.github/actions/godot-build
30+
with:
31+
sconsflags: ${{ env.SCONSFLAGS }}
32+
platform: tvos
33+
target: release
34+
tools: false
35+
tests: false
36+
37+
- name: Upload artifact
38+
uses: ./.github/actions/upload-artifact

0 commit comments

Comments
 (0)