generated from nathanfranke/gdextension
-
Notifications
You must be signed in to change notification settings - Fork 134
60 lines (52 loc) · 1.71 KB
/
android.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
name: 🤖 Android Builds
on: [ push, workflow_call, workflow_dispatch ]
jobs:
build:
name: ${{ matrix.name }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- identifier: android-debug
name: Android Debug
target: template_debug
platform: android
arch: arm64
- identifier: android-release
name: Android Release
target: template_release
platform: android
arch: arm64
steps:
- name: Checkout Terrain3D
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Android Dependencies
uses: ./.github/actions/android-deps
- name: Setup Base Dependencies
uses: ./.github/actions/base-deps
- name: Setup Build Cache
uses: ./.github/actions/build-cache
with:
cache-name: ${{ matrix.identifier }}
continue-on-error: true
- name: Build Terrain3D
shell: sh
env:
SCONS_CACHE: "${{ github.workspace }}/.scons-cache/"
SCONS_CACHE_LIMIT: 7168
run: |
scons target='${{ matrix.target }}' platform='${{ matrix.platform }}' arch='${{ matrix.arch }}' debug_symbols=no -j2
- name: Include Files
shell: sh
run: |
ls -l project/addons/terrain_3d/bin/
cp '${{ github.workspace }}/README.md' '${{ github.workspace }}/LICENSE.txt' ${{ github.workspace }}/project/addons/terrain_3d/
- name: Upload Package
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}
path: |
${{ github.workspace }}/project/