File tree 2 files changed +16
-35
lines changed
2 files changed +16
-35
lines changed Original file line number Diff line number Diff line change 33
33
test :
34
34
name : Android ${{ matrix.versions.android }} Test
35
35
runs-on : macos-latest
36
+ continue-on-error : true
36
37
37
38
# hoist configurations to top that are expected to be updated
38
39
env :
@@ -55,39 +56,28 @@ jobs:
55
56
strategy :
56
57
matrix :
57
58
versions :
59
+ # Test the lowest minimum supported APIs
58
60
- android : 5.1
59
61
android-api : 22
60
62
61
- - android : 6
62
- android-api : 23
63
-
64
- - android : 7
65
- android-api : 24
66
-
67
- - android : 7.1
68
- android-api : 25
69
-
70
- - android : 8
71
- android-api : 26
72
-
73
- - android : 8.1
74
- android-api : 27
75
- system-image-target : default
76
-
77
- - android : 9
78
- android-api : 28
79
-
63
+ # Test the last 3-4 supported APIs
80
64
- android : 10
81
65
android-api : 29
82
66
83
67
- android : 11
84
68
android-api : 30
85
69
70
+ - android : 12
71
+ android-api : 31
72
+
73
+ - android : 12L
74
+ android-api : 32
75
+
86
76
timeout-minutes : 60
87
77
88
78
steps :
89
- - uses : actions/checkout@v2
90
- - uses : actions/setup-node@v2
79
+ - uses : actions/checkout@v3
80
+ - uses : actions/setup-node@v3
91
81
with :
92
82
node-version : ${{ env.node-version }}
93
83
- uses : actions/setup-java@v3
@@ -112,7 +102,7 @@ jobs:
112
102
npm ci
113
103
114
104
- name : Run paramedic install
115
- if : ${{ endswith(env.repo, '/cordova-paramedic') != true }}
105
+ if : ${{ endswith(env.repo, '/cordova-paramedic') != true }}
116
106
run : npm i -g github:apache/cordova-paramedic
117
107
118
108
- uses : reactivecircus/android-emulator-runner@5de26e4bd23bf523e8a4b7f077df8bfb8e52b50e
Original file line number Diff line number Diff line change 33
33
test :
34
34
name : iOS ${{ matrix.versions.ios-version }} Test
35
35
runs-on : ${{ matrix.versions.os-version }}
36
+ continue-on-error : true
36
37
37
38
# hoist configurations to top that are expected to be updated
38
39
env :
@@ -49,15 +50,11 @@ jobs:
49
50
strategy :
50
51
matrix :
51
52
versions :
52
- - os-version : macos-10.15
53
- ios-version : 12.x
54
- xcode-version : 11.x
55
-
56
- - os-version : macos-10.15
53
+ - os-version : macos-11
57
54
ios-version : 13.x
58
55
xcode-version : 11.x
59
56
60
- - os-version : macos-10.15
57
+ - os-version : macos-11
61
58
ios-version : 14.x
62
59
xcode-version : 12.x
63
60
87
84
npm i -g cordova@latest ios-deploy@latest
88
85
npm ci
89
86
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
-
96
87
- name : Run paramedic install
97
- if : ${{ endswith(env.repo, '/cordova-paramedic') != true }}
88
+ if : ${{ endswith(env.repo, '/cordova-paramedic') != true }}
98
89
run : npm i -g github:apache/cordova-paramedic
99
90
100
91
- name : Run paramedic tests
You can’t perform that action at this time.
0 commit comments