-
Notifications
You must be signed in to change notification settings - Fork 91
706 lines (706 loc) · 23.7 KB
/
build.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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
name: build
on:
push:
branches:
- trunk
pull_request:
merge_group:
schedule:
# Nightly builds against react-native@nightly at 4:00, Monday through Friday
- cron: 0 4 * * 1-5
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
VisualStudioVersion: "17.0"
concurrency:
# Ensure single build of a pull request. `trunk` should not be affected.
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint-commit:
name: "lint commit message"
runs-on: ubuntu-24.04
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
- name: Lint commit message
run: |
npm run lint:commit
review:
permissions:
issues: write # comment on PRs (suggestion-bot)
pull-requests: write # create code reviews (suggestion-bot)
strategy:
matrix:
runner: [macos-14, windows-2022]
runs-on: ${{ matrix.runner }}
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: node
- name: Deduplicate packages
run: |
yarn dedupe --check
- name: Install npm dependencies
uses: ./.github/actions/yarn
- name: Validate generated files
if: ${{ github.event_name == 'pull_request' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn generate:code
yarn generate:schema
if [[ -n "$GITHUB_TOKEN" ]]; then
git diff | yarn suggestion-bot
fi
git diff --exit-code
shell: bash
- name: ClangFormat
if: ${{ github.event_name == 'pull_request' && runner.os == 'macOS' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# TODO: GITHUB_TOKEN is not set if a PR comes from a forked repo.
# Ignore errors until we can create a GitHub PAT from a system
# account.
scripts/build/clang-format-diff.sh || true
- name: CocoaPods
if: ${{ runner.os == 'macOS' }}
run: |
echo "::add-matcher::.github/rubocop.json"
yarn lint:rb
echo "::remove-matcher owner=rubocop::"
echo "::add-matcher::.github/minitest.json"
yarn test:rb
echo "::remove-matcher owner=minitest::"
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4
- name: Populate Gradle cache
if: ${{ runner.os != 'Windows' }}
uses: ./.github/actions/gradle
with:
arguments: clean
project-root: example
- name: JavaScript
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# TODO: GITHUB_TOKEN is not set if a PR comes from a forked repo.
# Ignore errors until we can create a GitHub PAT from a system
# account.
if [[ ${{ runner.os }} == macOS ]]; then
yarn format:js
if [[ -n "$GITHUB_TOKEN" ]]; then
git diff | yarn suggestion-bot
else
git diff
fi
git diff --exit-code
echo "::add-matcher::.github/eslint-stylish.json"
yarn lint:js
echo "::remove-matcher owner=eslint-stylish::"
fi
yarn tsc
yarn test:js
shell: bash
- name: ktlint
if: ${{ github.event_name == 'pull_request' && runner.os == 'macOS' }}
run: |
brew install ktlint
echo "::add-matcher::.github/ktlint.json"
yarn lint:kt
echo "::remove-matcher owner=ktlint::"
- name: SwiftFormat
if: ${{ github.event_name == 'pull_request' && runner.os == 'macOS' }}
run: |
echo "::add-matcher::.github/swiftformat.json"
yarn format:swift --lint
echo "::remove-matcher owner=swiftformat::"
- name: SwiftLint
if: ${{ runner.os == 'macOS' }}
run: |
brew install swiftlint
echo "::add-matcher::.github/swiftlint.json"
swiftlint
echo "::remove-matcher owner=swiftlint::"
- name: Smoke test `npx --package react-native-test-app@latest init`
run: |
node ./react-native-test-app/scripts/init.mjs --destination app --name App -p android -p ios -p macos -p windows
working-directory: ..
- name: Smoke test `setup-react-native` action
uses: ./.github/actions/setup-react-native
with:
version: nightly
timeout-minutes: 60
ios:
name: "iOS"
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: ios
project-root: example
cache-key-prefix: example
- name: Set up react-native@nightly
if: ${{ github.event_name == 'schedule' }}
uses: ./.github/actions/setup-react-native
with:
version: nightly
- name: Install npm dependencies
uses: ./.github/actions/yarn
with:
immutable: ${{ github.event_name != 'schedule' }}
- name: Bundle JavaScript
run: |
yarn build:ios || yarn build:ios
working-directory: example
- name: Determine whether the iOS app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Install Pods
if: ${{ steps.affected.outputs.ios != '' }}
uses: ./.github/actions/cocoapods
with:
project-directory: ios
working-directory: example
- name: Build
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../scripts/build/xcodebuild.sh ios/Example.xcworkspace build-for-testing
working-directory: example
- name: Test `react-native config`
if: ${{ steps.affected.outputs.ios != '' }}
run: |
node --test test/config.test.mjs
working-directory: example
- name: Test
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../scripts/build/xcodebuild.sh ios/Example.xcworkspace test-without-building
working-directory: example
timeout-minutes: 60
ios-template:
name: "iOS [template]"
strategy:
matrix:
template: [all, ios]
runs-on: macos-14
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: ios
project-root: example
cache-key-prefix: template-${{ matrix.template }}
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:ios || yarn build:ios
working-directory: template-example
- name: Determine whether the iOS app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Determine project directory
id: configure
if: ${{ steps.affected.outputs.ios != '' }}
run: |
if [[ ${{ matrix.template }} == ios ]]; then
echo 'project-directory=.' >> $GITHUB_OUTPUT
else
echo 'project-directory=ios' >> $GITHUB_OUTPUT
fi
- name: Install Pods
if: ${{ steps.affected.outputs.ios != '' }}
run: |
pod install --project-directory=${{ steps.configure.outputs.project-directory }}
working-directory: template-example
- name: Build
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../scripts/build/xcodebuild.sh ${{ steps.configure.outputs.project-directory }}/TemplateExample.xcworkspace build
working-directory: template-example
- name: react-native run-ios
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../scripts/testing/react-native.mjs run-ios
working-directory: template-example
timeout-minutes: 60
android:
name: "Android"
strategy:
matrix:
runner: [ubuntu-24.04, windows-2022]
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: android
- name: Set up react-native@nightly
if: ${{ github.event_name == 'schedule' }}
uses: ./.github/actions/setup-react-native
with:
version: nightly
- name: Install npm dependencies
uses: ./.github/actions/yarn
with:
immutable: ${{ github.event_name != 'schedule' }}
- name: Test `react-native config`
run: |
node --test test/config.test.mjs
working-directory: example
- name: Bundle JavaScript
# Metro on nightlies currently fails with "SHA-1 for file index.js is
# not computed" so we'll skip this step for now.
if: ${{ github.event_name != 'schedule' || runner.os != 'Windows' }}
run: |
yarn build:android || yarn build:android
shell: bash
working-directory: example
- name: Determine whether the Android app needs to be built
id: affected
# Nightlies currently fail on Windows because of wrong path separators.
if: ${{ github.event_name != 'schedule' || runner.os != 'Windows' }}
uses: ./.github/actions/affected
- name: Build
if: ${{ steps.affected.outputs.android != '' }}
uses: ./.github/actions/gradle
with:
project-root: example
timeout-minutes: 60
android-template:
name: "Android [template]"
strategy:
matrix:
template: [all, android]
runner: [ubuntu-24.04, windows-2022]
runs-on: ${{ matrix.runner }}
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: android
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:android || yarn build:android
shell: bash
working-directory: template-example
- name: Determine whether the Android app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Build
if: ${{ steps.affected.outputs.android != '' }}
uses: ./.github/actions/gradle
with:
project-root: template-example
- name: react-native run-android
if: ${{ steps.affected.outputs.android != '' }}
run: |
../scripts/testing/react-native.mjs run-android
working-directory: template-example
timeout-minutes: 60
macos:
name: "macOS"
runs-on: macos-14
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: macos
project-root: example
cache-key-prefix: example
- name: Set up react-native@canary
if: ${{ github.event_name == 'schedule' }}
uses: ./.github/actions/setup-react-native
with:
version: canary-macos
- name: Install npm dependencies
uses: ./.github/actions/yarn
with:
immutable: ${{ github.event_name != 'schedule' }}
- name: Bundle JavaScript
run: |
yarn build:macos || yarn build:macos
working-directory: example
- name: Determine whether the macOS app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Install Pods
if: ${{ steps.affected.outputs.macos != '' }}
uses: ./.github/actions/cocoapods
with:
project-directory: macos
working-directory: example
- name: Build x86
if: ${{ steps.affected.outputs.macos != '' }}
run: |
../scripts/build/xcodebuild.sh macos/Example.xcworkspace build-for-testing
working-directory: example
- name: Test `react-native config`
if: ${{ steps.affected.outputs.macos != '' }}
run: |
node --test test/config.test.mjs
working-directory: example
- name: Test
# Temporarily disabled due to random failures
if: false # ${{ steps.affected.outputs.macos != '' && github.event_name != 'schedule' }}
run: |
../scripts/build/xcodebuild.sh macos/Example.xcworkspace test-without-building
working-directory: example
- name: Prepare for arm64 build
if: ${{ steps.affected.outputs.macos != '' }}
run: |
rm -fr macos/build
working-directory: example
- name: Install Pods
if: ${{ steps.affected.outputs.macos != '' }}
uses: ./.github/actions/cocoapods
with:
project-directory: macos
working-directory: example
- name: Build arm64
if: ${{ steps.affected.outputs.macos != '' }}
run: |
../scripts/build/xcodebuild.sh macos/Example.xcworkspace build ARCHS=arm64
working-directory: example
timeout-minutes: 60
macos-template:
name: "macOS [template]"
strategy:
matrix:
template: [all, macos]
runs-on: macos-14
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: macos
project-root: example
cache-key-prefix: template-${{ matrix.template }}
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:macos || yarn build:macos
working-directory: template-example
- name: Determine whether the macOS app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Determine project directory
id: configure
if: ${{ steps.affected.outputs.macos != '' }}
run: |
if [[ ${{ matrix.template }} == macos ]]; then
echo 'project-directory=.' >> $GITHUB_OUTPUT
else
echo 'project-directory=macos' >> $GITHUB_OUTPUT
fi
- name: Install Pods
if: ${{ steps.affected.outputs.macos != '' }}
run: |
pod install --project-directory=${{ steps.configure.outputs.project-directory }}
working-directory: template-example
- name: Build
if: ${{ steps.affected.outputs.macos != '' }}
run: |
../scripts/build/xcodebuild.sh ${{ steps.configure.outputs.project-directory }}/TemplateExample.xcworkspace build
working-directory: template-example
timeout-minutes: 60
visionos:
name: "visionOS"
runs-on: macos-14
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: visionos
project-root: example
cache-key-prefix: example
xcode-developer-dir: /Applications/Xcode_15.2.app
- name: Set up react-native@nightly
if: ${{ github.event_name == 'schedule' }}
uses: ./.github/actions/setup-react-native
with:
version: nightly
- name: Install npm dependencies
uses: ./.github/actions/yarn
with:
immutable: ${{ github.event_name != 'schedule' }}
- name: Bundle JavaScript
run: |
yarn build:visionos || yarn build:visionos
working-directory: example
- name: Determine whether the visionOS app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Install Pods
if: ${{ steps.affected.outputs.visionos != '' }}
uses: ./.github/actions/cocoapods
with:
project-directory: visionos
working-directory: example
- name: Build
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
../scripts/build/xcodebuild.sh visionos/Example.xcworkspace build-for-testing
working-directory: example
- name: Test `react-native config`
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
node --test test/config.test.mjs
working-directory: example
timeout-minutes: 60
visionos-template:
name: "visionOS [template]"
strategy:
matrix:
template: [all, visionos]
runs-on: macos-14
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: visionos
project-root: example
cache-key-prefix: template-${{ matrix.template }}
xcode-developer-dir: /Applications/Xcode_15.2.app
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:visionos || yarn build:visionos
working-directory: template-example
- name: Determine whether the visionOS app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Determine project directory
id: configure
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
if [[ ${{ matrix.template }} == visionos ]]; then
echo 'project-directory=.' >> $GITHUB_OUTPUT
else
echo 'project-directory=visionos' >> $GITHUB_OUTPUT
fi
- name: Install Pods
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
pod install --project-directory=${{ steps.configure.outputs.project-directory }}
working-directory: template-example
- name: Build
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
../scripts/build/xcodebuild.sh ${{ steps.configure.outputs.project-directory }}/TemplateExample.xcworkspace build
working-directory: template-example
timeout-minutes: 60
windows:
name: "Windows"
runs-on: windows-2022
strategy:
matrix:
platform: [ARM64, x64]
configuration: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: windows
- name: Set up react-native@canary
if: ${{ github.event_name == 'schedule' }}
uses: ./.github/actions/setup-react-native
with:
version: canary-windows
- name: Install npm dependencies
uses: ./.github/actions/yarn
with:
immutable: ${{ github.event_name != 'schedule' }}
- name: Bundle JavaScript
run: |
yarn build:windows
- name: Generate Visual Studio solution
run: |
yarn install-windows-test-app --use-nuget
working-directory: example
- name: Test `react-native config`
run: |
node --test test/config.test.mjs
working-directory: example
- name: Determine whether the Windows app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Build
if: ${{ steps.affected.outputs.windows != '' }}
run: |
if ("${{ matrix.configuration }}" -eq "Release") {
yarn ci:windows --release --arch ${{ matrix.platform }}
} else {
yarn ci:windows --arch ${{ matrix.platform }}
}
working-directory: example/windows
- name: Test
if: ${{ steps.affected.outputs.windows != '' && matrix.platform == 'x64' }}
run: |
../../../scripts/build/MSBuild.ps1 -Configuration ${{ matrix.configuration }} -Platform ${{ matrix.platform }} -Target Build ReactAppTests.vcxproj
../../../scripts/build/VSTest.ps1 ${{ matrix.platform }}\${{ matrix.configuration }}\ReactAppTests.dll
working-directory: example/windows/ReactAppTests
timeout-minutes: 60
windows-template:
name: "Windows [template]"
runs-on: windows-2022
if: ${{ github.event_name != 'schedule' }}
strategy:
matrix:
template: [all, windows]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: windows
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:windows
- name: Generate Visual Studio solution
run: |
if ("${{ matrix.template }}" -eq "all") { yarn install-windows-test-app --use-nuget }
else { yarn install-windows-test-app --project-directory=. --use-nuget }
working-directory: template-example
- name: Determine whether the Windows app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Build
if: ${{ steps.affected.outputs.windows != '' }}
run: |
yarn windows --logging --no-packager --no-launch --no-deploy
working-directory: template-example
timeout-minutes: 60
release:
permissions:
contents: write # create releases (semantic-release)
id-token: write # enable use of OIDC for npm provenance (semantic-release)
needs:
- review
- ios
- ios-template
- android
- android-template
- macos
- macos-template
- windows
- windows-template
runs-on: ubuntu-24.04
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
- name: Install npm dependencies
uses: ./.github/actions/yarn
- name: Verify tarball content
run: |
yarn test test/pack.test.ts
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn semantic-release
autobot:
name: "Autobot"
permissions:
contents: read
pull-requests: write
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-24.04
steps:
- name: Label
uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: true
continue-on-error: true