forked from OpenBrickProtocolFoundation/oopetris
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (55 loc) · 1.57 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
61
62
63
64
65
name: Android CI
on:
release:
types: [published]
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
android-build:
name: Build android apk for - ${{ matrix.config.arch }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
config:
- arch: armeabi-v7a
- arch: arm64-v8a
- arch: x86
- arch: x86_64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Setup Meson
run: |
python -m pip install --upgrade pip
pip install meson
- name: Setup ninja
run: |
sudo apt-get update
sudo apt-get install ninja-build
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Setup NDK
run: |
sdkmanager --install "ndk;26.3.11579264"
- name: Build natibe libraries
run: |
bash ./platforms/build-android.sh ${{ matrix.config.arch }}
cp -r ./assets/ platforms/android/app/src/main
- name: Build APK
run: |
cd platforms/android/
./gradlew assembleDebug --no-daemon -PANDROID_ABI=${{ matrix.config.arch }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: oopetris.${{ matrix.config.arch }}.apk
path: platforms/android/app/build/outputs/apk/debug/app-*-debug.apk