Skip to content

Commit f68f159

Browse files
committed
Merge branch 'main' into other/test_ios_900_pods
2 parents 699ac93 + 25da83c commit f68f159

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/ios.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ jobs:
3535
echo "::set-output name=matrix_xcode_version::$( python scripts/gha/print_matrix_configuration.py -w ios -k xcode_version ${EXPANDED_MATRIX_PARAM} )"
3636
3737
build:
38-
name: ios-macos-latest
39-
runs-on: macos-12
38+
name: ios-${{ matrix.os }}-${{ matrix.xcode_version }}
39+
runs-on: ${{ matrix.os }}
4040
needs: prepare_matrix
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
xcode_verison: ${{ fromJson(needs.prepare_matrix.outputs.matrix_xcode_version) }}
44+
os: [ 'macos-12' ]
45+
xcode_version: ${{ fromJson(needs.prepare_matrix.outputs.matrix_xcode_version) }}
4546
steps:
4647
- name: Store git credentials for all git commands
4748
# Forces all git commands to use authenticated https, to prevent throttling.
@@ -52,7 +53,7 @@ jobs:
5253
5354
- name: setup Xcode version (macos)
5455
if: runner.os == 'macOS'
55-
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_verison }}.app/Contents/Developer
56+
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer
5657

5758
- uses: actions/checkout@v2
5859
with:

scripts/gha/print_matrix_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@
170170
"ios_min": {"type": "real", "model":"iphone8", "version":"11.4"},
171171
"ios_target": {"type": "real", "model":"iphone8plus", "version":"12.0"},
172172
"ios_latest": {"type": "real", "model":"iphone11pro", "version":"14.7"},
173-
"simulator_min": {"type": "virtual", "name":"iPhone 8", "version":"13.7"},
174-
"simulator_target": {"type": "virtual", "name":"iPhone 11", "version":"14.5"},
175-
"simulator_latest": {"type": "virtual", "name":"iPhone 13", "version":"15.0"},
173+
"simulator_min": {"type": "virtual", "name":"iPhone 6", "version":"12.4"},
174+
"simulator_target": {"type": "virtual", "name":"iPhone 8", "version":"14.5"},
175+
"simulator_latest": {"type": "virtual", "name":"iPhone 11", "version":"15.4"},
176176
"tvos_simulator": {"type": "virtual", "name":"Apple TV", "version":"14.3"},
177177
}
178178

0 commit comments

Comments
 (0)