musikr: dont pass JObject ownership #2051
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Setup arm rust target | |
run: rustup target add armv7-linux-androideabi | |
- name: Setup x86 rust target | |
run: rustup target add i686-linux-android | |
- name: Setup arm64 rust target | |
run: rustup target add aarch64-linux-android | |
- name: Setup x86_64 rust target | |
run: rustup target add x86_64-linux-android | |
- 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: Check formatting with spotless | |
run: ./gradlew spotlessCheck | |
- name: Test musikr with Gradle | |
run: ./gradlew musikr: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 |