File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments