-
Notifications
You must be signed in to change notification settings - Fork 8
454 lines (377 loc) · 14.6 KB
/
Copy pathreact-native-ci.yml
File metadata and controls
454 lines (377 loc) · 14.6 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
name: React Native CI
on:
pull_request:
branches:
- main
- 'sdk-*'
paths:
- 'react-native/**'
push:
branches:
- main
- 'sdk-*'
paths:
- 'react-native/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: react-native/yarn.lock
- name: Install dependencies
working-directory: react-native
run: yarn install --frozen-lockfile
- name: Run linting
working-directory: react-native
run: yarn lint
build-android:
name: Build Android
runs-on: ubuntu-latest
needs: lint
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: react-native/yarn.lock
- name: Install dependencies
working-directory: react-native
run: yarn install --frozen-lockfile
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Cache Gradle dependencies
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
react-native/android/.gradle
key: gradle-${{ runner.os }}-${{ hashFiles('react-native/android/gradle/wrapper/gradle-wrapper.properties', 'react-native/android/**/*.gradle*') }}
restore-keys: |
gradle-${{ runner.os }}-
- name: Build Android APK
working-directory: react-native
run: yarn build:android
- name: Upload Android APK artifact
uses: actions/upload-artifact@v4
with:
name: android-apk
path: react-native/android/app/build/outputs/apk/debug/app-debug.apk
retention-days: 1
build-ios:
name: Build iOS
runs-on: macos-latest
needs: lint
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: react-native/yarn.lock
- name: Install dependencies
working-directory: react-native
run: yarn install --frozen-lockfile
- name: Cache CocoaPods dependencies
uses: actions/cache@v4
with:
path: |
react-native/ios/Pods
~/Library/Caches/CocoaPods
~/.cocoapods
key: cocoapods-${{ runner.os }}-${{ hashFiles('react-native/ios/Podfile.lock') }}
restore-keys: |
cocoapods-${{ runner.os }}-
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.4'
- name: Install Ruby gems
working-directory: react-native
run: bundle install
- name: Install CocoaPods
working-directory: react-native/ios
run: bundle exec pod install
- name: Build iOS IPA
working-directory: react-native
run: yarn build:ios
- name: Build iOS Archive and IPA (for BrowserStack)
working-directory: react-native
run: |
echo "🍎 Building iOS device .ipa for BrowserStack..."
# Build and archive iOS app for real device
xcodebuild -workspace ios/DittoReactNativeSampleApp.xcworkspace \
-scheme DittoReactNativeSampleApp \
-configuration Debug \
-destination 'generic/platform=iOS' \
-archivePath ios/build/DittoReactNativeSampleApp.xcarchive \
archive \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
echo "📦 Creating unsigned .ipa for BrowserStack..."
# Find the .app bundle from the archive
APP_BUNDLE_PATH=$(find ios/build/DittoReactNativeSampleApp.xcarchive/Products/Applications -maxdepth 1 -name "*.app" -type d | head -1)
if [ -d "$APP_BUNDLE_PATH" ]; then
echo "✅ iOS app bundle found: $APP_BUNDLE_PATH"
# Create unsigned IPA: Payload/<App>.app zipped as .ipa
mkdir -p ios/build/Payload
cp -R "$APP_BUNDLE_PATH" ios/build/Payload/
(cd ios/build && zip -qry DittoReactNativeSampleApp-unsigned.ipa Payload && rm -rf Payload)
if [ -f "ios/build/DittoReactNativeSampleApp-unsigned.ipa" ]; then
echo "✅ Unsigned .ipa created successfully"
ls -la ios/build/DittoReactNativeSampleApp-unsigned.ipa
else
echo "❌ Failed to create .ipa file"
exit 1
fi
else
echo "❌ iOS app bundle not found in archive"
exit 1
fi
- name: Upload iOS IPA artifact
uses: actions/upload-artifact@v4
with:
name: ios-ipa
path: react-native/ios/build/DittoReactNativeSampleApp-unsigned.ipa
retention-days: 1
seed-ditto-cloud:
name: Seed Ditto Cloud
runs-on: ubuntu-latest
needs: lint
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Ditto CLI
run: npm install -g @dittolive/ditto-cli
- name: Seed test data to Ditto Cloud
run: |
# Create test task for Maestro verification
ditto_cli create_task "Basic Test Task" \
--app-id "${{ secrets.DITTO_APP_ID }}" \
--token "${{ secrets.DITTO_PLAYGROUND_TOKEN }}" \
--completed false
env:
DITTO_APP_ID: ${{ secrets.DITTO_APP_ID }}
DITTO_PLAYGROUND_TOKEN: ${{ secrets.DITTO_PLAYGROUND_TOKEN }}
test-android-maestro:
name: Test Android - BrowserStack Maestro
runs-on: ubuntu-latest
needs: [build-android, seed-ditto-cloud]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Download Android APK
uses: actions/download-artifact@v4
with:
name: android-apk
path: ./artifacts/
- name: Upload APK to BrowserStack
id: upload-apk
run: |
response=$(curl -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
-X POST "https://api-cloud.browserstack.com/app-automate/maestro/v2/app" \
-F "file=@./artifacts/app-debug.apk" \
-F "custom_id=ReactNative-Android-${{ github.run_id }}")
echo "Upload response: $response"
app_url=$(echo $response | jq -r '.app_url')
# Validate API response
if [ -z "$app_url" ] || [ "$app_url" = "null" ]; then
echo "❌ Failed to get app_url from upload response"
echo "Response: $response"
exit 1
fi
echo "✅ APK uploaded successfully: $app_url"
echo "app_url=$app_url" >> $GITHUB_OUTPUT
- name: Create Maestro test suite ZIP
run: |
cd react-native/.maestro
zip -r ../../maestro-tests.zip . -x "*.DS_Store"
ls -la ../../maestro-tests.zip
- name: Upload Maestro test suite to BrowserStack
id: upload-tests
run: |
response=$(curl -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
-X POST "https://api-cloud.browserstack.com/app-automate/maestro/v2/test-suite" \
-F "file=@./maestro-tests.zip" \
-F "custom_id=ReactNative-Tests-${{ github.run_id }}")
echo "Upload response: $response"
test_suite_url=$(echo $response | jq -r '.test_suite_url')
# Validate API response
if [ -z "$test_suite_url" ] || [ "$test_suite_url" = "null" ]; then
echo "❌ Failed to get test_suite_url from upload response"
echo "Response: $response"
exit 1
fi
echo "✅ Test suite uploaded successfully: $test_suite_url"
echo "test_suite_url=$test_suite_url" >> $GITHUB_OUTPUT
- name: Execute Maestro tests on BrowserStack (Parallel)
id: execute-tests
run: |
response=$(curl -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
-X POST "https://api-cloud.browserstack.com/app-automate/maestro/v2/android/build" \
-H "Content-Type: application/json" \
-d '{
"app": "${{ steps.upload-apk.outputs.app_url }}",
"testSuite": "${{ steps.upload-tests.outputs.test_suite_url }}",
"project": "Ditto React Native",
"buildName": "Build #${{ github.run_number }}",
"buildTag": "${{ github.ref_name }}",
"devices": [
"Samsung Galaxy S22-12.0",
"Google Pixel 7-13.0"
],
"execute": ["01-app-launch-and-seeded-tasks.yaml"],
"deviceLogs": true,
"networkLogs": true,
"video": true
}')
echo "Execution response: $response"
build_id=$(echo $response | jq -r '.build_id')
echo "build_id=$build_id" >> $GITHUB_OUTPUT
echo "BrowserStack Build ID: $build_id"
- name: Wait for test completion and get results
run: |
build_id="${{ steps.execute-tests.outputs.build_id }}"
# Wait for tests to complete (max 20 minutes)
for i in {1..120}; do
response=$(curl -s -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
"https://api-cloud.browserstack.com/app-automate/maestro/v2/builds/$build_id")
status=$(echo $response | jq -r '.status')
echo "Test status: $status (attempt $i/120)"
if [ "$status" = "passed" ] || [ "$status" = "failed" ]; then
echo "Tests completed with status: $status"
echo $response | jq '.'
if [ "$status" = "failed" ]; then
echo "❌ Android Maestro tests failed!"
exit 1
else
echo "✅ Android Maestro tests passed!"
fi
break
fi
sleep 10
done
if [ $i -eq 120 ]; then
echo "❌ Tests timed out after 20 minutes"
exit 1
fi
test-ios-maestro:
name: Test iOS - BrowserStack Maestro
runs-on: ubuntu-latest
needs: [build-ios, seed-ditto-cloud]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Download iOS IPA
uses: actions/download-artifact@v4
with:
name: ios-ipa
path: ./artifacts/
- name: Upload IPA to BrowserStack
id: upload-ipa
run: |
response=$(curl -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
-X POST "https://api-cloud.browserstack.com/app-automate/maestro/v2/app" \
-F "file=@./artifacts/DittoReactNativeSampleApp-unsigned.ipa" \
-F "custom_id=ReactNative-iOS-${{ github.run_id }}")
echo "Upload response: $response"
app_url=$(echo $response | jq -r '.app_url')
# Validate API response
if [ -z "$app_url" ] || [ "$app_url" = "null" ]; then
echo "❌ Failed to get app_url from upload response"
echo "Response: $response"
exit 1
fi
echo "✅ IPA uploaded successfully: $app_url"
echo "app_url=$app_url" >> $GITHUB_OUTPUT
- name: Create Maestro test suite ZIP
run: |
cd react-native/.maestro
zip -r ../../maestro-tests.zip . -x "*.DS_Store"
ls -la ../../maestro-tests.zip
- name: Upload Maestro test suite to BrowserStack
id: upload-tests
run: |
response=$(curl -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
-X POST "https://api-cloud.browserstack.com/app-automate/maestro/v2/test-suite" \
-F "file=@./maestro-tests.zip" \
-F "custom_id=ReactNative-iOS-Tests-${{ github.run_id }}")
echo "Upload response: $response"
test_suite_url=$(echo $response | jq -r '.test_suite_url')
echo "test_suite_url=$test_suite_url" >> $GITHUB_OUTPUT
- name: Execute Maestro tests on BrowserStack (Parallel)
id: execute-tests
run: |
response=$(curl -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
-X POST "https://api-cloud.browserstack.com/app-automate/maestro/v2/ios/build" \
-H "Content-Type: application/json" \
-d '{
"app": "${{ steps.upload-ipa.outputs.app_url }}",
"testSuite": "${{ steps.upload-tests.outputs.test_suite_url }}",
"project": "Ditto React Native",
"buildName": "Build #${{ github.run_number }}",
"buildTag": "${{ github.ref_name }}",
"devices": [
"iPhone 15-17.0",
"iPhone 14-16.0"
],
"execute": ["01-app-launch-and-seeded-tasks-ios.yaml"],
"deviceLogs": true,
"networkLogs": true,
"video": true
}')
echo "Execution response: $response"
build_id=$(echo $response | jq -r '.build_id')
echo "build_id=$build_id" >> $GITHUB_OUTPUT
echo "BrowserStack Build ID: $build_id"
- name: Wait for test completion and get results
run: |
build_id="${{ steps.execute-tests.outputs.build_id }}"
# Wait for tests to complete (max 20 minutes)
for i in {1..120}; do
response=$(curl -s -u "${{ secrets.BROWSERSTACK_USERNAME }}:${{ secrets.BROWSERSTACK_ACCESS_KEY }}" \
"https://api-cloud.browserstack.com/app-automate/maestro/v2/builds/$build_id")
status=$(echo $response | jq -r '.status')
echo "Test status: $status (attempt $i/120)"
if [ "$status" = "passed" ] || [ "$status" = "failed" ]; then
echo "Tests completed with status: $status"
echo $response | jq '.'
if [ "$status" = "failed" ]; then
echo "❌ iOS Maestro tests failed!"
exit 1
else
echo "✅ iOS Maestro tests passed!"
fi
break
fi
sleep 10
done
if [ $i -eq 120 ]; then
echo "❌ Tests timed out after 20 minutes"
exit 1
fi