File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -658,10 +658,14 @@ jobs:
658
658
run : |
659
659
pip install -r scripts/gha/requirements.txt
660
660
python scripts/gha/restore_secrets.py --passphrase "${{ secrets.TEST_SECRET }}"
661
- - name : Build integration tests (and run Desktop tests)
661
+ - name : Build integration tests
662
662
run : |
663
- python scripts/gha/build_testapps.py --t ${{ env.apis }} --p ${{ matrix.target_platform }} --sdk_dir firebase_cpp_sdk --output_directory ${{ github.workspace }} --execute_desktop_testapp --noadd_timestamp
664
-
663
+ python scripts/gha/build_testapps.py --t ${{ env.apis }} --p ${{ matrix.target_platform }} --sdk_dir firebase_cpp_sdk --output_directory ${{ github.workspace }} --noadd_timestamp
664
+
665
+ - name : Run desktop integration tests
666
+ if : matrix.target_platform == 'Desktop' && !cancelled()
667
+ run : |
668
+ python scripts/gha/desktop_tester.py --testapp_dir testapps
665
669
# Workaround for https://github.com/GoogleCloudPlatform/github-actions/issues/100
666
670
# Must be run after the Python setup action
667
671
- name : Set CLOUDSDK_PYTHON (Windows)
Original file line number Diff line number Diff line change @@ -136,11 +136,11 @@ jobs:
136
136
- name : Upload Desktop Artifacts to GCS
137
137
if : matrix.target_platform == 'Desktop' && !cancelled()
138
138
run : |
139
- python scripts/gha/gcs_uploader.py --testapp_dir ${{ github.workspace }}/ testapps --key_file ${{ github.workspace }}/ scripts/gha-encrypted/gcs_key_file.json
139
+ python scripts/gha/gcs_uploader.py --testapp_dir testapps --key_file scripts/gha-encrypted/gcs_key_file.json
140
140
- name : Run mobile integration tests
141
141
if : matrix.target_platform != 'Desktop' && !cancelled()
142
142
run : |
143
- python scripts/gha/test_lab.py --android_model ${{ github.event.inputs.android_device }} --android_api ${{ github.event.inputs.android_api }} --ios_model ${{ github.event.inputs.ios_device }} --ios_version ${{ github.event.inputs.ios_version }} --testapp_dir ${{ github.workspace }}/ testapps --code_platform cpp --key_file ${{ github.workspace }}/ scripts/gha-encrypted/gcs_key_file.json
143
+ python scripts/gha/test_lab.py --android_model ${{ github.event.inputs.android_device }} --android_api ${{ github.event.inputs.android_api }} --ios_model ${{ github.event.inputs.ios_device }} --ios_version ${{ github.event.inputs.ios_version }} --testapp_dir testapps --code_platform cpp --key_file scripts/gha-encrypted/gcs_key_file.json
144
144
- name : Summarize build and test results
145
145
if : ${{ !cancelled() }}
146
146
shell : bash
You can’t perform that action at this time.
0 commit comments