Skip to content

Commit de0f328

Browse files
authored
Test for enabling CI again (#555)
1 parent c401000 commit de0f328

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,15 @@ jobs:
3535
counter=0 ;
3636
result=1 ;
3737
while [ $result != 0 -a $counter -lt $MAX_RETRY ]; do
38-
gcloud firebase test android run --type instrumentation --app demo-playground/build/outputs/apk/debug/demo-playground-debug.apk --test flexbox/build/outputs/apk/androidTest/debug/flexbox-debug-androidTest.apk --device-ids hammerhead,sailfish --os-version-ids 19,21,23,24,25,26 --locales en --orientations portrait,landscape --results-bucket ${GCLOUD_TEST_BUCKET_LIBRARY} --timeout 180s ;
38+
gcloud firebase test android run \
39+
--type instrumentation \
40+
--app demo-playground/build/outputs/apk/debug/demo-playground-debug.apk \
41+
--test flexbox/build/outputs/apk/androidTest/debug/flexbox-debug-androidTest.apk \
42+
--device-ids hammerhead,sailfish \
43+
--os-version-ids 19,21,23,24,25,26 \
44+
--locales en --orientations portrait,landscape \
45+
--results-bucket android-devrel-ci-flexbox \
46+
--timeout 180s ;
3947
result=$? ;
4048
let counter=counter+1 ;
4149
done

0 commit comments

Comments
 (0)