@@ -740,7 +740,9 @@ jobs:
740
740
os : ${{ fromJson(needs.check_and_prepare.outputs.matrix_os) }}
741
741
ssl_variant : ${{ fromJson(needs.check_and_prepare.outputs.matrix_ssl) }}
742
742
steps :
743
- - uses : actions/checkout@v2
743
+ - name : setup Xcode version (macos)
744
+ if : runner.os == 'macOS'
745
+ run : sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.outputs.xcode_version)[0] }}.app/Cont - uses: actions/checkout@v2
744
746
with :
745
747
ref : ${{needs.check_and_prepare.outputs.github_ref}}
746
748
- name : Download Desktop integration tests artifact
@@ -816,7 +818,9 @@ jobs:
816
818
build_os : ${{ fromJson(needs.check_and_prepare.outputs.matrix_os) }}
817
819
android_device : ${{ fromJson(needs.check_and_prepare.outputs.android_device) }}
818
820
steps :
819
- - uses : actions/checkout@v2
821
+ - name : setup Xcode version (macos)
822
+ if : runner.os == 'macOS'
823
+ run : sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.outputs.xcode_version)[0] }}.app/Cont - uses: actions/checkout@v2
820
824
with :
821
825
ref : ${{needs.check_and_prepare.outputs.github_ref}}
822
826
- name : Download Android integration tests artifact
@@ -911,7 +915,9 @@ jobs:
911
915
matrix :
912
916
ios_device : ${{ fromJson(needs.check_and_prepare.outputs.ios_device) }}
913
917
steps :
914
- - uses : actions/checkout@v2
918
+ - name : setup Xcode version (macos)
919
+ if : runner.os == 'macOS'
920
+ run : sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.outputs.xcode_version)[0] }}.app/Cont - uses: actions/checkout@v2
915
921
with :
916
922
ref : ${{needs.check_and_prepare.outputs.github_ref}}
917
923
- name : Download iOS integration tests artifact
@@ -1007,7 +1013,9 @@ jobs:
1007
1013
matrix :
1008
1014
tvos_device : ${{ fromJson(needs.check_and_prepare.outputs.tvos_device) }}
1009
1015
steps :
1010
- - uses : actions/checkout@v2
1016
+ - name : setup Xcode version (macos)
1017
+ if : runner.os == 'macOS'
1018
+ run : sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.outputs.xcode_version)[0] }}.app/Cont - uses: actions/checkout@v2
1011
1019
with :
1012
1020
ref : ${{needs.check_and_prepare.outputs.github_ref}}
1013
1021
- name : Download tvOS integration tests artifact
0 commit comments