This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Linux build environment setup guide #534
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: Build the lib | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up NDK | |
uses: nttld/setup-ndk@v1 | |
with: | |
ndk-version: r25c | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Install latest stable Rust | |
uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1.0.5 | |
- name: Install Cargo targets | |
run: rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android | |
- name: Debug build with Gradle | |
run: ./gradlew lib:assembleDebug | |
- name: Release build with Gradle | |
run: ./gradlew lib:assembleRelease | |
test: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up NDK | |
uses: nttld/setup-ndk@v1 | |
with: | |
ndk-version: r22b | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Install latest stable Rust | |
uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1.0.5 | |
- name: Install Cargo targets | |
run: rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android | |
- name : Run unit tests | |
run: ./gradlew :lib:test | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: instrumentation-test-results | |
path: ./appmock/build/reports/androidTests/connected/** |