-
-
Notifications
You must be signed in to change notification settings - Fork 150
36 lines (33 loc) · 922 Bytes
/
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
name: Android CI
on:
push:
branches: []
pull_request:
branches: []
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install ninja-build
run: sudo apt-get install -y ninja-build
- name: Clone repository
uses: actions/checkout@v4
- name: Clone submodules
run: git submodule update --init --recursive --remote
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test app with Gradle
run: ./gradlew app:testDebug
- name: Build debug APK with Gradle
run: ./gradlew app:packageDebug
- name: Upload debug APK artifact
uses: actions/upload-artifact@v4
with:
name: Auxio_Canary
path: ./app/build/outputs/apk/debug/app-debug.apk