Skip to content

Commit b28e70f

Browse files
committed
add new device to test
1 parent f0447a1 commit b28e70f

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/continuous-integration.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,19 @@ jobs:
5656
run: gcloud config set project ${{ secrets.FIREBASE_PROJECT_ID }}
5757

5858
# Run Instrumentation Tests in Firebase Test Lab
59+
# dm3q Samasung galaxy s23 SDK 33
60+
# e1q Samasung galaxy s24 SDK 34
61+
# bluejay Google Pixel 6a SDK 32
62+
# a51 Samsung Galaxy A51 SDK 31
63+
# q2q Samsung Galaxy Z Fold3 SDK 30
64+
# cactus Xiaomi Redmi 6A SDK 27
5965
- name: Run Instrumentation Tests in Firebase Test Lab
60-
run: gcloud firebase test android run --type instrumentation --app ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk --test ${{ env.module_app }}/build/outputs/apk/androidTest/debug/${{ env.module_app }}-debug-androidTest.apk --device model=akita,version=34,locale=en,orientation=portrait
66+
run: |
67+
gcloud firebase test android run --type instrumentation --app ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk --test ${{ env.module_app }}/build/outputs/apk/androidTest/debug/${{ env.module_app }}-debug-androidTest.apk --device model=e1q,version=34,locale=en,orientation=portrait
68+
gcloud firebase test android run --type instrumentation --app ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk --test ${{ env.module_app }}/build/outputs/apk/androidTest/debug/${{ env.module_app }}-debug-androidTest.apk --device model=dm3q,version=33,locale=en,orientation=portrait
69+
gcloud firebase test android run --type instrumentation --app ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk --test ${{ env.module_app }}/build/outputs/apk/androidTest/debug/${{ env.module_app }}-debug-androidTest.apk --device model=bluejay,version=32,locale=en,orientation=portrait
70+
gcloud firebase test android run --type instrumentation --app ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk --test ${{ env.module_app }}/build/outputs/apk/androidTest/debug/${{ env.module_app }}-debug-androidTest.apk --device model=a51,version=31,locale=en,orientation=portrait
71+
gcloud firebase test android run --type instrumentation --app ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk --test ${{ env.module_app }}/build/outputs/apk/androidTest/debug/${{ env.module_app }}-debug-androidTest.apk --device model=q2q,version=30,locale=en,orientation=portrait
6172

6273

6374
##########################################

0 commit comments

Comments
 (0)