-
Notifications
You must be signed in to change notification settings - Fork 20
271 lines (219 loc) · 7.12 KB
/
workflow.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
269
270
271
name: ci
on:
push:
branches: [ master, main ]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
release:
types: [published]
workflow_dispatch:
repository_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
env:
XCODE_VERSION: '15.1'
RUBY_VERSION: '3.1'
jobs:
test:
name: Test SDK
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ env.XCODE_VERSION }}
run: sudo xcode-select -switch /Applications/Xcode_${XCODE_VERSION}.app
- name: "Cache dependencies"
uses: actions/cache@v4
with:
path: Carthage/build
key: ${{ runner.os }}-carthage-v2-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: |
bundle exec fastlane test
timeout-minutes: 15
- if: github.event_name == 'push'
run: |
bundle exec fastlane pod_size
cp .lint/cocoapods-size/result.json cocoapods-size-result.json
- if: github.event_name == 'push'
uses: actions/cache@v4
with:
path: cocoapods-size-result.json
key: cocoapods-size-${{ github.sha }}
sources-lint:
name: Lint Source files
needs: test
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ env.XCODE_VERSION }}
run: sudo xcode-select -switch /Applications/Xcode_${XCODE_VERSION}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: bundle exec fastlane swift_lint
- run: bundle exec fastlane html_lint
- run: bundle exec fastlane xcprivacy_lint
pod-lint:
name: Lint Podspec
needs: test
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ env.XCODE_VERSION }}
run: sudo xcode-select -switch /Applications/Xcode_${XCODE_VERSION}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: bundle exec fastlane pod_lint
carthage-build:
name: Carthage Build
needs: test
runs-on: macos-14
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
xcode: [ '15.4' ]
experimental: [ false ]
include:
- xcode: '14.3.1'
experimental: false
- xcode: '16.1'
experimental: true
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ matrix.xcode }}
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: brew upgrade carthage
- run: bundle exec fastlane carthage_build
swift-package-build:
name: Swift Package Build
needs: test
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ env.XCODE_VERSION }}
run: sudo xcode-select -switch /Applications/Xcode_${XCODE_VERSION}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: bundle exec fastlane spm_build
size-report:
name: Cocoapods size report
if: github.event_name == 'pull_request'
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: cocoapods-size-result.json
key: cocoapods-size-${{ github.sha }}
restore-keys: cocoapods-size-
- run: brew install jq
- if: hashFiles('cocoapods-size-result.json') == ''
run: |
jq -n '{combined_pods_extra_size: 0}' > cocoapods-size-result.json
- id: main_size
run: |
main_size=$(jq '.combined_pods_extra_size // 0' cocoapods-size-result.json -r)
echo "value=${main_size}" >> $GITHUB_OUTPUT
- name: Use Xcode ${{ env.XCODE_VERSION }}
run: sudo xcode-select -switch /Applications/Xcode_${XCODE_VERSION}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: bundle exec fastlane pod_size
- id: pr_size
run: |
pr_size=$(jq '.combined_pods_extra_size' .lint/cocoapods-size/result.json -r)
echo "value=${pr_size}" >> $GITHUB_OUTPUT
- id: diff_size
run: echo "value=$((${{ steps.pr_size.outputs.value }} - ${{ steps.main_size.outputs.value }}))" >> $GITHUB_OUTPUT
- uses: peter-evans/find-comment@v3
id: find_comment
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Cocoapods size report
- uses: peter-evans/create-or-update-comment@v4
with:
body: |
Cocoapods size report:
```
OLD: ${{ steps.main_size.outputs.value }} bytes
NEW: ${{ steps.pr_size.outputs.value }} bytes
DIFF: ${{ steps.diff_size.outputs.value }} bytes
```
edit-mode: replace
comment-id: ${{ steps.find_comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
token: ${{ secrets.GITHUB_TOKEN }}
samples:
name: Build Samples
needs: test
runs-on: macos-14
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
xcode: [ '15.4' ]
experimental: [ false ]
include:
- xcode: '14.3.1'
experimental: false
- xcode: '16.1'
experimental: true
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ matrix.xcode }}
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: bundle exec pod install
working-directory: Example
- run: bundle exec fastlane ios samples_build
- run:
release:
name: Release
if: github.event_name == 'release'
needs:
- sources-lint
- pod-lint
- carthage-build
- swift-package-build
- samples
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Use Xcode ${{ env.XCODE_VERSION }}
run: sudo xcode-select -switch /Applications/Xcode_${XCODE_VERSION}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Release
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name github-actions
git config user.email [email protected]
bundle exec fastlane release