-
Notifications
You must be signed in to change notification settings - Fork 20
175 lines (143 loc) · 4.8 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
name: ci
on:
push:
branches: [ master, main ]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
release:
workflow_dispatch:
repository_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
env:
XCODE_VERSION: '13.1'
RUBY_VERSION: '2.7.2'
jobs:
sdk:
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
- run: brew upgrade carthage
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: |
bundle exec fastlane ci
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 }}
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@v3
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: sdk
runs-on: macos-12
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
xcode: [ '13.1' ]
experimental: [ false ]
include:
- xcode: '13.4.1'
experimental: true
- xcode: '14.2'
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
release:
name: Release
if: github.event_name == 'release'
needs: 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