This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
Update accompanist_version to v0.32.0 #2649
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- "*" | |
jobs: | |
linux: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Install NDK | |
run: | | |
echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;26.0.10404224" --channel=1 --sdk_root=${ANDROID_SDK_ROOT} &> /dev/null | |
- name: Install Rust Toolchain | |
run: rustup update && rustup target add armv7-linux-androideabi aarch64-linux-android i686-linux-android x86_64-linux-android && rustup component add rustfmt clippy | |
- name: Rustfmt Check | |
working-directory: ./app/src/main/rust | |
run: cargo fmt --all -- --check | |
- name: Clippy Check | |
working-directory: ./app/src/main/rust | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Ktlint Check | |
run: ./gradlew ktlintCheck | |
- name: Gradle Build | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
arguments: assembleRelease | |
- name: Update ARM64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: arm64-v8a-${{ github.sha }} | |
path: app/build/outputs/apk/release/app-arm64-v8a-release.apk | |
- name: Update x86_64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: x86_64-${{ github.sha }} | |
path: app/build/outputs/apk/release/app-x86_64-release.apk | |
- name: Update ARM32 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: armeabi-v7a-${{ github.sha }} | |
path: app/build/outputs/apk/release/app-armeabi-v7a-release.apk | |
- name: Update x86 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: x86-${{ github.sha }} | |
path: app/build/outputs/apk/release/app-x86-release.apk | |
- name: Update mapping | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mapping-${{ github.sha }} | |
path: app/build/outputs/mapping/release/mapping.txt | |
retention-days: 5 |