-
Notifications
You must be signed in to change notification settings - Fork 24
291 lines (253 loc) · 8.74 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
name: React Native Dogfood Release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
GOOGLE_APPLICATION_CREDENTIALS: '/home/runner/rn-samples-google-services.json'
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 }}
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 }}
RN_DOGFOOD_ANDROID_KEYSTORE: '/home/runner/stream-video-calls-rn.keystore'
RN_DOGFOOD_ANDROID_KEYSTORE_PASSWORD: ${{ secrets.RN_DOGFOOD_ANDROID_KEYSTORE_PASSWORD }}
RN_DOGFOOD_ANDROID_KEYSTORE_ALIAS: ${{ secrets.RN_DOGFOOD_ANDROID_KEYSTORE_ALIAS }}
RN_DOGFOOD_ANDROID_DEPLOY_SERVICE_ACCOUNT: '/home/runner/service-account.json'
FASTLANE_SKIP_UPDATE_CHECK: 1
REACT_NATIVE_DOGFOOD_APP_ENVIRONMENT: 'demo'
on:
push:
tags:
- '@stream-io/video-react-native-dogfood-*'
pull_request:
types:
- opened
- synchronize
- reopened
paths:
- '.github/workflows/react-native-workflow.yml'
- 'sample-apps/react-native/dogfood/**'
- 'packages/client/**'
- 'packages/react-bindings/**'
- 'packages/react-native-sdk/**'
- 'packages/video-filters-react-native/**'
- '!**/docusaurus/**'
- '!**.md'
workflow_dispatch:
concurrency:
group: react-native-workflow-${{ github.ref }}
cancel-in-progress: true
jobs:
code_review:
name: Code Lint, Unit Test and dogfood versioning
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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
- name: Test RN SDK (Unit tests only)
run: yarn test:react-native:sdk
build_ios:
name: Build iOS
timeout-minutes: 60
needs: code_review
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 20
env:
INSTALL_NODE: true
INSTALL_PODS: true
INSTALL_RN_DEPENDENCIES: true
- 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
if: ${{ github.ref == 'refs/heads/main' }}
timeout-minutes: 100
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- 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
- 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: build_ios
timeout-minutes: 60
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/PBE-5855-feat/react-native-video-design-v2' }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- 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
needs: code_review
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
env:
INSTALL_NODE: true
INSTALL_JAVA: true
INSTALL_RN_DEPENDENCIES: true
- name: Create Google Services JSON File
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON_RN_SAMPLES_DEPLOYMENT }}
run: echo $DATA > ~/rn-samples-google-services.json
shell: bash
- name: Create Google Service Account for Play Store Deployment
env:
DATA: ${{ secrets.RN_DOGFOOD_ANDROID_DEPLOY_SERVICE_ACCOUNT_BASE64 }}
run: echo $DATA | base64 --decode | jq > ~/service-account.json
shell: bash
- name: Create Keystore Signing for Play Store Deployment
env:
DATA: ${{ secrets.RN_DOGFOOD_ANDROID_KEYSTORE_BASE64 }}
run: echo $DATA | base64 -d > ~/stream-video-calls-rn.keystore
shell: bash
- name: Build
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane build_android_play_store
- name: Upload .apk
uses: actions/upload-artifact@v3
with:
name: apk
path: '**/dist/*.apk'
- name: Upload .aab
uses: actions/upload-artifact@v3
with:
name: aab
path: '**/dist/*.aab'
test_android:
name: Test Android
needs: build_android
timeout-minutes: 100
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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: build_android
timeout-minutes: 60
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
- name: Download .aab
uses: actions/download-artifact@v3
with:
name: aab
- name: Create Google Service Account for Play Store Deployment
env:
DATA: ${{ secrets.RN_DOGFOOD_ANDROID_DEPLOY_SERVICE_ACCOUNT_BASE64 }}
run: echo $DATA | base64 --decode | jq > ~/service-account.json
shell: bash
- name: Deploy
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane deploy_android_play_store