Add targetSdk for unittest #162
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: | | |
echo 'org.gradle.caching=true' >> gradle.properties | |
echo 'org.gradle.parallel=true' >> gradle.properties | |
echo 'org.gradle.vfs.watch=true' >> gradle.properties | |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties | |
echo 'android.native.buildOutput=verbose' >> gradle.properties | |
./gradlew publishToMavenLocal | |
./gradlew --stop | |
env: | |
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.maven_pgp_signingKey }} | |
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.maven_pgp_signingPassword }} | |
- name: Upload library | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.os }}-library | |
path: ~/.m2 | |
test: | |
name: Test on API ${{ matrix.api-level }} ${{ matrix.arch }} | |
needs: build | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- api-level: 28 | |
target: default | |
arch: x86_64 | |
- api-level: 28 | |
target: default | |
arch: x86 | |
- api-level: 29 | |
target: default | |
arch: x86_64 | |
- api-level: 29 | |
target: default | |
arch: x86 | |
- api-level: 30 | |
target: aosp_atd | |
arch: x86_64 | |
- api-level: 30 | |
target: google_apis | |
arch: x86 | |
- api-level: 31 | |
target: aosp_atd | |
arch: x86_64 | |
- api-level: 31 | |
target: android-tv | |
arch: x86 | |
- api-level: 32 | |
target: aosp_atd | |
arch: x86_64 | |
- api-level: 33 | |
target: aosp_atd | |
arch: x86_64 | |
- api-level: 33 | |
target: android-tv | |
arch: x86 | |
- api-level: 34 | |
target: aosp_atd | |
arch: x86_64 | |
- api-level: 34 | |
target: android-tv | |
arch: x86 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: run tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
arch: ${{ matrix.arch }} | |
target: ${{ matrix.target }} | |
script: ./gradlew connectedCheck | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true |