refactor: adjust callback parameter for image analysis to be able for… #82
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 Test | |
on: | |
push: | |
pull-request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: macos-latest | |
# strategy: | |
# matrix: | |
# api-level: [23, 30, 31] | |
# target: [default, google_apis] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: make gradlew executable | |
run: chmod +x ./gradlew | |
- name: gradle cache | |
uses: gradle/gradle-build-action@v2 | |
- name: AVD cache | |
uses: actions/cache@v3 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ matrix.api-level }} | |
- name: create AVD and generate snapshot for caching | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 31 | |
arch: 'x86_64' | |
disable-animations: true | |
force-avd-creation: false | |
emulator-options: -no-window -camera-back emulated -camera-front emulated -gpu swiftshader_indirect -no-boot-anim | |
script: echo "Generated AVD snapshot for caching." | |
- name: run android tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 31 | |
arch: 'x86_64' | |
disable-animations: true | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -camera-back emulated -camera-front emulated -gpu swiftshader_indirect -no-boot-anim | |
script: ./gradlew connectedDebugAndroidTest |