File tree 1 file changed +22
-4
lines changed
1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change 32
32
jobs :
33
33
test :
34
34
name : iOS ${{ matrix.versions.ios-version }} Test
35
- runs-on : macos-latest
35
+ runs-on : ${{ matrix.versions.os-version }}
36
36
37
37
# hoist configurations to top that are expected to be updated
38
38
env :
49
49
strategy :
50
50
matrix :
51
51
versions :
52
- - ios-version : 12.x
53
- - ios-version : 13.x
54
- - ios-version : 14.x
52
+ - os-version : macos-10.15
53
+ ios-version : 12.x
54
+ xcode-version : 11.x
55
+
56
+ - os-version : macos-10.15
57
+ ios-version : 13.x
58
+ xcode-version : 11.x
59
+
60
+ - os-version : macos-10.15
61
+ ios-version : 14.x
62
+ xcode-version : 12.x
63
+
64
+ - os-version : macos-11
65
+ ios-version : 15.x
66
+ xcode-version : 13.x
55
67
56
68
steps :
57
69
- uses : actions/checkout@v2
75
87
npm i -g cordova@latest ios-deploy@latest
76
88
npm ci
77
89
90
+ - name : Run setup iOS 12.x support
91
+ if : ${{ matrix.versions.ios-version == '12.x' }}
92
+ run : |
93
+ sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes
94
+ sudo ln -s /Applications/Xcode_10.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 12.4.simruntime
95
+
78
96
- name : Run paramedic install
79
97
if : ${{ endswith(env.repo, '/cordova-paramedic') != true }}
80
98
run : npm i -g github:apache/cordova-paramedic
You can’t perform that action at this time.
0 commit comments