@@ -735,6 +735,11 @@ jobs:
735
735
uses : actions/setup-python@v2
736
736
with :
737
737
python-version : ${{ env.pythonVersion }}
738
+ - name : Setup Firebase Emulators
739
+ run : |
740
+ curl -sL firebase.tools | bash
741
+ firebase setup:emulators:firestore
742
+ firebase emulators:start
738
743
- name : Setup integration test deps
739
744
run : |
740
745
pip install -r scripts/gha/requirements.txt
@@ -804,6 +809,11 @@ jobs:
804
809
python-version : ${{ env.pythonVersion }}
805
810
- name : Install python deps
806
811
run : pip install -r scripts/gha/requirements.txt
812
+ - name : Setup Firebase Emulators
813
+ run : |
814
+ curl -sL firebase.tools | bash
815
+ firebase setup:emulators:firestore
816
+ firebase emulators:start
807
817
- id : get-device-type
808
818
run : |
809
819
echo "::set-output name=device_type::$( python scripts/gha/print_matrix_configuration.py -d -k ${{ matrix.android_device }} )"
@@ -888,6 +898,11 @@ jobs:
888
898
python-version : ${{ env.pythonVersion }}
889
899
- name : Install python deps
890
900
run : pip install -r scripts/gha/requirements.txt
901
+ - name : Setup Firebase Emulators
902
+ run : |
903
+ curl -sL firebase.tools | bash
904
+ firebase setup:emulators:firestore
905
+ firebase emulators:start
891
906
- id : get-device-type
892
907
run : |
893
908
echo "::set-output name=device_type::$( python scripts/gha/print_matrix_configuration.py -d -k ${{ matrix.ios_device }} )"
@@ -972,6 +987,11 @@ jobs:
972
987
python-version : ${{ env.pythonVersion }}
973
988
- name : Install python deps
974
989
run : pip install -r scripts/gha/requirements.txt
990
+ - name : Setup Firebase Emulators
991
+ run : |
992
+ curl -sL firebase.tools | bash
993
+ firebase setup:emulators:firestore
994
+ firebase emulators:start
975
995
- name : Run tvOS integration tests on Simulator locally
976
996
run : |
977
997
python scripts/gha/test_simulator.py --testapp_dir testapps \
0 commit comments