fix(quality-selector): avoid set video quality selector when is recor… #193
Workflow file for this run
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: ubuntu-latest | |
strategy: | |
matrix: | |
api-level: [21, 26, 31, 34] | |
include: | |
- api-level: 21 | |
arch: 'x86' | |
target: default | |
- api-level: 26 | |
arch: 'x86_64' | |
target: default | |
- api-level: 31 | |
arch: 'x86_64' | |
target: google_apis | |
- api-level: 34 | |
arch: 'x86_64' | |
target: google_apis | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- 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: Enable KVM group perms | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: Gradle cache | |
uses: gradle/actions/setup-gradle@v3 | |
- name: AVD cache | |
uses: actions/cache@v4 | |
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: ${{ matrix.api-level }} | |
arch: ${{ matrix.arch }} | |
target: ${{ matrix.target }} | |
force-avd-creation: false | |
emulator-options: -no-window -no-boot-anim -camera-back emulated -camera-front emulated -gpu swiftshader_indirect | |
disable-animations: false | |
script: echo "Generated AVD snapshot for caching." | |
- name: run android tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
env: | |
ANDROID_EMULATOR_WAIT_TIME_BEFORE_KILL: 60 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: ${{ matrix.target }} | |
arch: ${{ matrix.arch }} | |
disable-animations: true | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -no-boot-anim -no-metrics -camera-back emulated -camera-front emulated -gpu swiftshader_indirect | |
script: ./gradlew connectedAndroidTest --stacktrace |