-
Notifications
You must be signed in to change notification settings - Fork 523
268 lines (266 loc) · 9.72 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
name: "AlamofireImage CI"
on:
push:
branches:
- master
- hotfix
paths:
- ".github/workflows/**"
- "Package.swift"
- "Source/**"
- "Tests/**"
pull_request:
paths:
- ".github/workflows/**"
- "Package.swift"
- "Source/**"
- "Tests/**"
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true
jobs:
macOS:
name: Test macOS, All Xcodes and Swifts
runs-on: ${{ matrix.runsOn }}
env:
DEVELOPER_DIR: "/Applications/${{ matrix.xcode }}/Contents/Developer"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- xcode: "Xcode_14.3.1.app"
runsOn: firebreak
name: "macOS 13, Xcode 14.3, Swift 5.8.0"
testPlan: "macOS"
- xcode: "Xcode_14.2.app"
runsOn: macOS-12
name: "macOS 12, Xcode 14.2, Swift 5.7.2"
testPlan: "macOS"
- xcode: "Xcode_14.1.app"
runsOn: macOS-12
name: "macOS 12, Xcode 14.1, Swift 5.7.1"
testPlan: "macOS"
- xcode: "Xcode_14.0.1.app"
runsOn: macOS-12
name: "macOS 12, Xcode 14.0.1, Swift 5.7.0"
testPlan: "macOS"
- xcode: "Xcode_13.4.1.app"
runsOn: macOS-12
name: "macOS 12, Xcode 13.4.1, Swift 5.6.1"
testPlan: "macOS-NoTS"
- xcode: "Xcode_13.3.1.app"
runsOn: macOS-12
name: "macOS 12, Xcode 13.3.1, Swift 5.6.0"
testPlan: "macOS-NoTS"
- xcode: "Xcode_13.2.1.app"
runsOn: macOS-11
name: "macOS 11, Xcode 13.2.1, Swift 5.5.2"
testPlan: "macOS-NoTS"
- xcode: "Xcode_13.1.app"
runsOn: macOS-11
name: "macOS 11, Xcode 13.1, Swift 5.5.1"
testPlan: "macOS-NoTS"
- xcode: "Xcode_13.0.app"
runsOn: macOS-11
name: "macOS 11, Xcode 13.0, Swift 5.5.0"
testPlan: "macOS-NoTS"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: "brew install alamofire/alamofire/firewalk && firewalk &"
- name: Dependencies
run: carthage bootstrap --no-build
- name: ${{ matrix.name }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "AlamofireImage macOS" -destination "platform=macOS" clean build | xcpretty
Catalyst:
name: Test Catalyst
runs-on: macOS-13
env:
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk && firewalk &
- name: Dependencies
run: carthage bootstrap --no-build
- name: Catalyst
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "AlamofireImage iOS" -destination "platform=macOS" clean test | xcpretty
Latest:
name: Test Latest (iOS, tvOS, watchOS)
runs-on: macOS-13
env:
DEVELOPER_DIR: "/Applications/Xcode_14.3.1.app/Contents/Developer"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- destination: "OS=16.4,name=iPhone 14 Pro"
name: "iOS"
scheme: "AlamofireImage iOS"
- destination: "OS=16.4,name=Apple TV"
name: "tvOS"
scheme: "AlamofireImage tvOS"
- destination: "OS=9.4,name=Apple Watch Series 8 (45mm)"
name: "watchOS"
scheme: "AlamofireImage watchOS"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk && firewalk &
- name: Dependencies
run: carthage bootstrap --no-build
- name: ${{ matrix.name }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean test | xcpretty
iOS:
name: "Test Old iOS"
runs-on: firebreak
env:
DEVELOPER_DIR: "/Applications/Xcode_14.3.app/Contents/Developer"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- destination: "OS=15.5,name=iPhone 13 Pro"
name: "iOS 15.5"
testPlan: "iOS-NoTS"
- destination: "OS=14.5,name=iPhone 12 Pro"
name: "iOS 14.5"
testPlan: "iOS-NoTS"
# - destination: "OS=13.7,name=iPhone 11 Pro"
# name: "iOS 13.7"
# testPlan: "iOS-NoTS"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: Dependencies
run: carthage bootstrap --no-build
- name: ${{ matrix.destination }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "AlamofireImage iOS" -destination "${{ matrix.destination }}" -testPlan "${{ matrix.testPlan }}" clean test | xcpretty
Beta:
name: "Test Beta OSes"
runs-on: firebreak
env:
DEVELOPER_DIR: "/Applications/Xcode_15.0.app/Contents/Developer"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- destination: "OS=17.0,name=iPhone 14 Pro"
name: "iOS 17.0"
testPlan: "iOS"
scheme: "AlamofireImage iOS"
# - destination: "OS=1.0,name=Apple Vision Pro"
# name: "visionOS 1.0"
# testPlan: "visionOS"
# scheme: "Alamofire visionOS"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: Dependencies
run: carthage bootstrap --no-build
- name: ${{ matrix.name }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" -testPlan "${{ matrix.testPlan }}" clean test | xcpretty
tvOS:
name: Test Old tvOS
runs-on: firebreak
env:
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- destination: "OS=15.4,name=Apple TV"
name: "tvOS 15.4"
testPlan: "tvOS-NoTS"
- destination: "OS=14.5,name=Apple TV"
name: "tvOS 14.5"
testPlan: "tvOS-NoTS"
# - destination: "OS=13.4,name=Apple TV"
# name: "tvOS 13.4"
# testPlan: "tvOS-NoTS"
# - destination: "OS=12.4,name=Apple TV"
# name: "tvOS 12.4"
# testPlan: "tvOS-Old"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: Dependencies
run: carthage bootstrap --no-build
- name: ${{ matrix.destination }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "AlamofireImage tvOS" -destination "${{ matrix.destination }}" -testPlan "${{ matrix.testPlan }}" clean test | xcpretty
watchOS:
name: Test watchOS
runs-on: firebreak
env:
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- destination: "OS=8.5,name=Apple Watch Series 7 (45mm)"
name: "watchOS 8.5"
testPlan: "watchOS-NoTS"
- destination: "OS=7.4,name=Apple Watch Series 6 (44mm)"
name: "watchOS 7.4"
testPlan: "watchOS-NoTS"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk && firewalk &
- name: Dependencies
run: carthage bootstrap --no-build
- name: ${{ matrix.destination }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "AlamofireImage.xcworkspace" -scheme "AlamofireImage watchOS" -destination "${{ matrix.destination }}" -testPlan "${{ matrix.testPlan }}" clean test | xcpretty
SPM:
name: Build SPM
runs-on: ${{ matrix.runsOn }}
env:
DEVELOPER_DIR: "/Applications/${{ matrix.xcode }}.app/Contents/Developer"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- xcode: "Xcode_14.3.1"
runsOn: macOS-13
name: "macOS 13, SPM 5.8.0 Test"
- xcode: "Xcode_14.2"
runsOn: macOS-12
name: "macOS 12, SPM 5.7.2 Test"
- xcode: "Xcode_14.1"
runsOn: macOS-12
name: "macOS 12, SPM 5.7.1 Test"
- xcode: "Xcode_14.0.1"
runsOn: macOS-12
name: "macOS 12, SPM 5.7.0 Test"
- xcode: "Xcode_13.4.1"
runsOn: macOS-12
name: "macOS 12, SPM 5.6.1 Test"
- xcode: "Xcode_13.3.1"
runsOn: macOS-12
name: "macOS 12, SPM 5.6.0 Test"
- xcode: "Xcode_13.2.1"
runsOn: macOS-11
name: "macOS 11, SPM 5.5.2 Test"
- xcode: "Xcode_13.1"
runsOn: macOS-11
name: "macOS 11, SPM 5.5.1 Test"
- xcode: "Xcode_13.0"
runsOn: macOS-11
name: "macOS 11, SPM 5.5.0 Test"
steps:
- uses: actions/checkout@v3
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk && firewalk &
- name: Test SPM
run: swift build -c debug