Add -grpc to emulator options for CI

This commit is contained in:
Stypox 2026-02-08 20:49:35 +01:00
parent 512b536248
commit 03325682a1
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23

View File

@ -101,6 +101,9 @@ jobs:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: ${{ matrix.arch }}
# the default emulator options from https://github.com/ReactiveCircus/android-emulator-runner#configurations
# plus `-grpc 8554 -grpc-use-jwt` to allow Espresso device control for instrumented tests
emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -grpc 8554 -grpc-use-jwt
script: ./gradlew connectedCheck --stacktrace
- name: Upload test report when tests fail # because the printed out stacktrace (console) is too short, see also #7553