-
Notifications
You must be signed in to change notification settings - Fork 99
778 lines (778 loc) · 26.6 KB
/
build.yml
File metadata and controls
778 lines (778 loc) · 26.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
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
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
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
NODE_OPTIONS: "--disable-proto=delete"
VisualStudioVersion: "17.0"
WindowsTargetPlatformVersion: "10.0.26100.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"
permissions: {}
runs-on: ubuntu-24.04
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
- name: Lint commit message
run: |
node --run lint:commit
review:
permissions:
issues: write # comment on PRs (suggestion-bot)
pull-requests: write # create code reviews (suggestion-bot)
strategy:
matrix:
runner: [macos-15, windows-2025]
runs-on: ${{ matrix.runner }}
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v5
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: Lint lockfile
run: |
yarn lint-lockfile
- 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
working-directory: packages/app
- 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/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::"
working-directory: packages/app
- name: Populate Gradle cache
uses: ./.github/actions/gradle
with:
arguments: clean
project-root: packages/app/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
yarn lint:js
fi
yarn tsgo
yarn test:js
shell: bash
working-directory: packages/app
- 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::"
working-directory: packages/app
- 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::"
working-directory: packages/app
- name: SwiftLint
if: ${{ runner.os == 'macOS' }}
run: |
brew install swiftlint
echo "::add-matcher::.github/swiftlint.json"
swiftlint
echo "::remove-matcher owner=swiftlint::"
working-directory: packages/app
- name: Smoke test `npx --package react-native-test-app@latest init`
run: |
node ./react-native-test-app/packages/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"
permissions: {}
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: ios
project-root: packages/app/example
cache-key-prefix: example
xcode-developer-dir: /Applications/Xcode_16.4.app/Contents/Developer
- 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
working-directory: packages/app/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: packages/app/example
- name: Build
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../../../scripts/xcodebuild.sh ios/Example.xcworkspace build-for-testing
working-directory: packages/app/example
- name: Test `react-native config`
if: ${{ steps.affected.outputs.ios != '' }}
run: |
node --test test/config.test.mjs
working-directory: packages/app/example
- name: Test
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../../../scripts/xcodebuild.sh ios/Example.xcworkspace test-without-building
working-directory: packages/app/example
timeout-minutes: 60
ios-template:
name: "iOS [template]"
permissions: {}
strategy:
matrix:
template: [all, ios]
runs-on: macos-15
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: ios
project-root: packages/app/example
cache-key-prefix: template-${{ matrix.template }}
xcode-developer-dir: /Applications/Xcode_16.4.app/Contents/Developer
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:ios
working-directory: template-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 != '' }}
run: |
pod install --project-directory=ios
working-directory: template-example
- name: Build
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../scripts/xcodebuild.sh ios/TemplateExample.xcworkspace build
working-directory: template-example
- name: react-native run-ios
if: ${{ steps.affected.outputs.ios != '' }}
run: |
../scripts/react-native.mts run-ios
working-directory: template-example
timeout-minutes: 60
android:
name: "Android"
permissions: {}
strategy:
matrix:
runner: [ubuntu-24.04, windows-2025]
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v5
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: packages/app/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
shell: bash
working-directory: packages/app/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: packages/app/example
timeout-minutes: 60
android-template:
name: "Android [template]"
permissions: {}
strategy:
matrix:
template: [all, android]
runner: [ubuntu-24.04, windows-2025]
runs-on: ${{ matrix.runner }}
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v5
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
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/react-native.mts run-android
working-directory: template-example
timeout-minutes: 60
macos:
name: "macOS"
permissions: {}
runs-on: macos-15
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: macos
project-root: packages/app/example
cache-key-prefix: example
xcode-developer-dir: /Applications/Xcode_16.4.app/Contents/Developer
- 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
working-directory: packages/app/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: packages/app/example
- name: Build
if: ${{ steps.affected.outputs.macos != '' }}
run: |
../../../scripts/xcodebuild.sh macos/Example.xcworkspace build-for-testing
working-directory: packages/app/example
- name: Test `react-native config`
if: ${{ steps.affected.outputs.macos != '' }}
run: |
node --test test/config.test.mjs
working-directory: packages/app/example
- name: Test
if: ${{ steps.affected.outputs.macos != '' && github.event_name != 'schedule' }}
run: |
../../../scripts/xcodebuild.sh macos/Example.xcworkspace test-without-building
working-directory: packages/app/example
timeout-minutes: 60
macos-template:
name: "macOS [template]"
permissions: {}
strategy:
matrix:
template: [all, macos]
runs-on: macos-15
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: macos
project-root: packages/app/example
cache-key-prefix: template-${{ matrix.template }}
xcode-developer-dir: /Applications/Xcode_16.4.app/Contents/Developer
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:macos
working-directory: template-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 != '' }}
run: |
# TODO: Disable Hermes while build issues are being resolved
# https://github.com/microsoft/react-native-macos/issues/2499
sed -i '' 's/:hermes_enabled => true/:hermes_enabled => false/' macos/Podfile
pod install --project-directory=macos
working-directory: template-example
- name: Build
if: ${{ steps.affected.outputs.macos != '' }}
run: |
../scripts/xcodebuild.sh macos/TemplateExample.xcworkspace build
working-directory: template-example
timeout-minutes: 60
visionos:
name: "visionOS"
permissions: {}
runs-on: macos-15
if: false # visionOS temporarily disabled until releases are resumed
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: visionos
project-root: packages/app/example
cache-key-prefix: example
xcode-developer-dir: /Applications/Xcode_16.4.app/Contents/Developer
- 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
working-directory: packages/app/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: packages/app/example
- name: Build
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
../../../scripts/xcodebuild.sh visionos/Example.xcworkspace build-for-testing
working-directory: packages/app/example
- name: Test `react-native config`
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
node --test test/config.test.mjs
working-directory: packages/app/example
timeout-minutes: 60
visionos-template:
name: "visionOS [template]"
permissions: {}
strategy:
matrix:
template: [all, visionos]
runs-on: macos-15
if: false # visionOS temporarily disabled until releases are resumed
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: visionos
project-root: packages/app/example
cache-key-prefix: template-${{ matrix.template }}
xcode-developer-dir: /Applications/Xcode_16.4.app/Contents/Developer
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:visionos
working-directory: template-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 != '' }}
run: |
pod install --project-directory=visionos
working-directory: template-example
- name: Build
if: ${{ steps.affected.outputs.visionos != '' }}
run: |
../scripts/xcodebuild.sh visionos/TemplateExample.xcworkspace build
working-directory: template-example
timeout-minutes: 60
windows:
name: "Windows"
permissions: {}
runs-on: windows-2025
if: ${{ github.event_name != 'schedule' }}
strategy:
matrix:
platform: [ARM64, x64]
configuration: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: windows
node-version: 22
- 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: |
node ../windows/app.mjs --msbuildprops WindowsTargetPlatformVersion=$env:WindowsTargetPlatformVersion
working-directory: packages/app/example
- name: Test `react-native config`
run: |
node --test test/config.test.mjs
working-directory: packages/app/example
- name: Determine whether the Windows app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Build
id: 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: packages/app/example
continue-on-error: true
# GitHub Actions currently does not support outputs from jobs with matrices
# The workaround is to upload artifacts to communicate between jobs
- name: Set build result
id: build_result
if: ${{ steps.affected.outputs.windows != '' }}
run: |
path=${{ format('windows-build.{0}.{1}.result', matrix.platform, matrix.configuration) }}
echo "${{ steps.build.outcome }}" >> $path
echo "path=$path" >> "$GITHUB_OUTPUT"
shell: bash
- name: Upload build result
if: ${{ steps.affected.outputs.windows != '' }}
uses: actions/upload-artifact@v7
with:
name: ${{ steps.build_result.outputs.path }}
path: ${{ steps.build_result.outputs.path }}
retention-days: 1
archive: false
overwrite: true
- name: Upload build logs
if: ${{ steps.affected.outputs.windows != '' && steps.build.outcome != 'success' }}
uses: actions/upload-artifact@v7
with:
name: windows-msbuild.binlog
path: packages/app/example/windows/*.binlog
retention-days: 14
overwrite: true
- name: Test
if: ${{ steps.affected.outputs.windows != '' && matrix.platform == 'x64' && steps.build.outcome == 'success' }}
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: packages/app/example/windows/ReactAppTests
timeout-minutes: 60
windows-template:
name: "Windows [template]"
permissions: {}
runs-on: windows-2025
if: ${{ github.event_name != 'schedule' }}
strategy:
matrix:
template: [all, windows]
steps:
- name: Checkout
uses: actions/checkout@v5
with:
filter: blob:none
fetch-depth: 0
- name: Set up toolchain
uses: ./.github/actions/setup-toolchain
with:
platform: windows
node-version: 22
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
platform: ${{ matrix.template }}
- name: Bundle JavaScript
run: |
yarn build:windows
working-directory: template-example
- name: Generate Visual Studio solution
run: |
yarn install-windows-test-app --msbuildprops WindowsTargetPlatformVersion=$env:WindowsTargetPlatformVersion
working-directory: template-example
- name: Determine whether the Windows app needs to be built
id: affected
uses: ./.github/actions/affected
- name: Build
id: build
if: ${{ steps.affected.outputs.windows != '' }}
run: |
yarn windows --logging --no-packager --no-launch --no-deploy
working-directory: template-example
continue-on-error: true
# GitHub Actions currently does not support outputs from jobs with matrices
# The workaround is to upload artifacts to communicate between jobs
- name: Set build result
id: build_result
if: ${{ steps.affected.outputs.windows != '' }}
run: |
path=${{ format('windows-template-build.{0}.result', matrix.template) }}
echo "${{ steps.build.outcome }}" >> $path
echo "path=$path" >> "$GITHUB_OUTPUT"
shell: bash
- name: Upload build result
if: ${{ steps.affected.outputs.windows != '' }}
uses: actions/upload-artifact@v7
with:
name: ${{ steps.build_result.outputs.path }}
path: ${{ steps.build_result.outputs.path }}
retention-days: 1
archive: false
overwrite: true
- name: Upload build logs
if: ${{ steps.affected.outputs.windows != '' && steps.build.outcome != 'success' }}
uses: actions/upload-artifact@v7
with:
name: windows-template-msbuild.binlog
path: template-example/windows/*.binlog
retention-days: 14
overwrite: true
timeout-minutes: 60
windows-result:
name: "Windows [result]"
permissions: {}
runs-on: ubuntu-24.04
if: ${{ github.event_name != 'schedule' }}
needs:
- windows
- windows-template
steps:
- name: Download build results
uses: actions/download-artifact@v8
with:
path: results
pattern: "windows-*.result"
merge-multiple: true
- name: Warn if Windows builds failed
run: |
for file in results/*; do
if grep -q fail "$file"; then
echo "::warning::$(basename $file .result): $(cat $file) (this is non-blocking but should be investigated)"
fi
done
release:
permissions:
contents: write # create releases (Nx Release)
id-token: write # enable use of OIDC for trusted publishing
needs:
- review
- ios
- ios-template
- android
- android-template
- macos
- macos-template
- windows-result
runs-on: ubuntu-24.04
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v5
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
working-directory: packages/app
- name: Release (dry run)
if: ${{ github.ref != 'refs/heads/trunk' }}
run: |
yarn nx release --dry-run
- name: Release
if: ${{ github.ref == 'refs/heads/trunk' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git fetch origin trunk
if git merge-base --is-ancestor origin/trunk HEAD; then
git config user.email 'github-actions[bot]'
git config user.name 'github-actions[bot]@users.noreply.github.com'
yarn nx release --yes
fi
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/labeler@v5.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: true
continue-on-error: true