Commit 2ad8bc3 1 parent 83f4cd2 commit 2ad8bc3 Copy full SHA for 2ad8bc3
File tree 2 files changed +9
-17
lines changed
2 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 26
26
build :
27
27
if : github.repository == 'Expensify/react-native-live-markdown'
28
28
runs-on : ubuntu-latest
29
- strategy :
30
- matrix :
31
- react-native-architecture : ['Paper', 'Fabric']
32
- fail-fast : false
33
29
concurrency :
34
- group : build-android-${{ matrix.react-native-architecture }}-${{ github.ref }}
30
+ group : build-android-${{ github.ref }}
35
31
cancel-in-progress : true
36
32
steps :
37
33
- name : Check out Git repository
48
44
49
45
- name : Build app
50
46
working-directory : example/android
51
- run : ./gradlew assembleDebug --build-cache -PreactNativeArchitectures=arm64-v8a -PnewArchEnabled=${{ matrix.react-native-architecture == 'Fabric' && 'true' || 'false' }}
47
+ run : ./gradlew assembleDebug --build-cache -PreactNativeArchitectures=arm64-v8a
Original file line number Diff line number Diff line change 26
26
build :
27
27
if : github.repository == 'Expensify/react-native-live-markdown'
28
28
runs-on : macos-13
29
- strategy :
30
- matrix :
31
- react-native-architecture : ['Paper', 'Fabric']
32
- fail-fast : false
33
29
concurrency :
34
- group : build-ios-${{ matrix.react-native-architecture }}-${{ github.ref }}
30
+ group : build-ios-${{ github.ref }}
35
31
cancel-in-progress : true
36
32
steps :
37
33
- name : Check out Git repository
43
39
path : |
44
40
node_modules
45
41
example/node_modules
46
- key : build-ios-node-modules-${{ matrix.react-native-architecture }}-${{ hashFiles('package-lock.json') }}
47
- restore-keys : build-ios-node-modules-${{ matrix.react-native-architecture }}-
42
+ key : build-ios-node-modules-${{ hashFiles('package-lock.json') }}
43
+ restore-keys : build-ios-node-modules-
48
44
49
45
- name : Install node_modules
50
46
run : npm ci
56
52
example/ios/Pods
57
53
~/Library/Caches/CocoaPods
58
54
~/.cocoapods
59
- key : build-ios-pods-${{ matrix.react-native-architecture }}-${{ hashFiles('node_modules/react-native/package.json') }}
60
- restore-keys : build-ios-pods-${{ matrix.react-native-architecture }}-
55
+ key : build-ios-pods-${{ hashFiles('node_modules/react-native/package.json') }}
56
+ restore-keys : build-ios-pods-
61
57
62
58
- name : Install Pods
63
59
working-directory : example/ios
73
69
uses : actions/cache@v4
74
70
with :
75
71
path : ~/Library/Developer/Xcode/DerivedData
76
- key : build-ios-derived-data-${{ matrix.react-native-architecture }}-${{ hashFiles('node_modules/react-native/package.json') }}
77
- restore-keys : build-ios-derived-data-${{ matrix.react-native-architecture }}-
72
+ key : build-ios-derived-data-${{ hashFiles('node_modules/react-native/package.json') }}
73
+ restore-keys : build-ios-derived-data-
78
74
79
75
- name : Build app
80
76
working-directory : example
You can’t perform that action at this time.
0 commit comments