-
Notifications
You must be signed in to change notification settings - Fork 24
251 lines (216 loc) · 7.08 KB
/
react-native-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
name: React Native Dogfood Release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
FIREBASE_TOKEN: ${{ secrets.FIREBASE_APP_DISTRIBUTION_TOKEN }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
SENTRY_RN_AUTH_TOKEN: ${{ secrets.SENTRY_RN_AUTH_TOKEN }}
STREAM_API_KEY: ${{ vars.STREAM_DOGFOOD_API_KEY }}
STREAM_API_SECRET: ${{ secrets.STREAM_DOGFOOD_API_SECRET }}
STREAM_SDK_TEST_APP: ${{ secrets.STREAM_SDK_TEST_APP }}
STREAM_SDK_TEST_ACCOUNT_EMAIL: ${{ secrets.STREAM_SDK_TEST_ACCOUNT_EMAIL }}
STREAM_SDK_TEST_ACCOUNT_PASSWORD: ${{ secrets.STREAM_SDK_TEST_ACCOUNT_PASSWORD }}
STREAM_SDK_TEST_ACCOUNT_OTP_SECRET: ${{ secrets.STREAM_SDK_TEST_ACCOUNT_OTP_SECRET }}
on:
push:
paths:
- '.github/workflows/react-native-workflow.yml'
- 'sample-apps/react-native/dogfood/**'
- 'packages/client/**'
- 'packages/react-bindings/**'
- 'packages/react-native-sdk/**'
- '!**/docusaurus/**'
workflow_dispatch:
concurrency:
group: react-native-workflow-${{ github.ref }}
cancel-in-progress: true
jobs:
code_review:
name: Code Review
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
env:
INSTALL_NODE: true
INSTALL_RN_DEPENDENCIES: true
- name: Lint source code
working-directory: sample-apps/react-native/dogfood
run: yarn lint:ci
- name: Lint fastlane
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane rubocop
build_ios:
name: Build iOS
timeout-minutes: 60
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 20
env:
INSTALL_NODE: true
INSTALL_PODS: true
INSTALL_RN_DEPENDENCIES: true
INSTALL_IOS_PERMISSIONS: true
- name: Test RN SDK
run: yarn test:react-native:sdk
- name: Build
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane build_ios
- name: Upload .ipa
uses: actions/upload-artifact@v3
with:
name: ipa
path: |
**/dogfood/dist/*.ipa
**/dogfood/dist/*.zip
test_ios:
name: Test iOS
needs: build_ios
timeout-minutes: 100
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 20
env:
INSTALL_NODE: true
INSTALL_PODS: true
INSTALL_PYTHON: true
INSTALL_MAESTRO: true
INSTALL_VIDEO_BUDDY: true
INSTALL_RN_DEPENDENCIES: true
INSTALL_IOS_PERMISSIONS: true
- name: Test
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane test_ios
- uses: actions/upload-artifact@v3
if: failure()
with:
name: iOS Test Data
path: |
**/fastlane/recordings
**/fastlane/video-buddy-log.txt
~/.maestro/tests
deploy_ios:
name: Deploy iOS
needs: test_ios
timeout-minutes: 60
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
- name: Download .ipa
uses: actions/download-artifact@v3
with:
name: ipa
- name: Deploy
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane deploy_ios
build_android:
name: Build Android
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
env:
INSTALL_NODE: true
INSTALL_JAVA: true
INSTALL_RN_DEPENDENCIES: true
- name: Test RN SDK
run: yarn test:react-native:sdk
- name: Build
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane build_android
- name: Upload .apk
uses: actions/upload-artifact@v3
with:
name: apk
path: '**/dist/*.apk'
test_android:
name: Test Android
needs: build_android
timeout-minutes: 100
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
env:
INSTALL_NODE: true
INSTALL_FFMPEG: true
INSTALL_MAESTRO: true
INSTALL_VIDEO_BUDDY: true
INSTALL_ANDROID_EMULATOR: true
- name: Download .apk
uses: actions/download-artifact@v3
with:
name: apk
- name: Create AVD Snapshot
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 28
arch: x86_64
target: google_apis
profile: pixel_5
disable-animations: false
force-avd-creation: false
avd-name: test
ram-size: 8192M
disk-size: 2048M
emulator-boot-timeout: 1000
emulator-options: -no-window -no-boot-anim -no-audio -no-snapshot-load -gpu swiftshader_indirect
working-directory: sample-apps/react-native/dogfood
script: echo 'AVD snapshot is generated and will be cached for the future runs.'
- name: Test
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 28
arch: x86_64
target: google_apis
profile: pixel_5
disable-animations: true
force-avd-creation: false
avd-name: test
ram-size: 8192M
disk-size: 2048M
emulator-boot-timeout: 1000
emulator-options: -no-window -no-boot-anim -no-audio -no-snapshot-load -gpu swiftshader_indirect
working-directory: sample-apps/react-native/dogfood
script: bundle exec fastlane test_android
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Android Test Data
path: |
**/fastlane/recordings
**/fastlane/video-buddy-log.txt
~/.maestro/tests
deploy_android:
name: Deploy Android
needs: test_android
timeout-minutes: 60
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
- name: Download .apk
uses: actions/download-artifact@v3
with:
name: apk
- name: Deploy
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane deploy_android