Commit b0422d4 1 parent 533588f commit b0422d4 Copy full SHA for b0422d4
File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 46
46
47
47
with :
48
48
ruby-version : ${{ inputs.ruby-version }}
49
+ - name : Download ReactNativeDependencies
50
+ uses : actions/download-artifact@v4
51
+ with :
52
+ name : ReactNativeDependencies${{ inputs.flavor }}.framework.dSYM.tar.gz
53
+ path : packages/react-native/third-party
54
+ - name : Print third-party folder
55
+ shell : bash
56
+ run : ls -lR packages/react-native/third-party
49
57
- name : Install iOS dependencies - Configuration ${{ inputs.flavor }}; New Architecture ${{ inputs.architecture }}; JS Engine ${{ inputs.jsengine }}
50
58
shell : bash
51
59
run : |
78
86
BUILD_TYPE="${{ inputs.flavor }}"
79
87
TARBALL_FILENAME=$(node ../react-native/scripts/hermes/get-tarball-name.js --buildType "$BUILD_TYPE")
80
88
HERMES_PATH="$HERMES_WS_DIR/hermes-runtime-darwin/$TARBALL_FILENAME"
81
- HERMES_ENGINE_TARBALL_PATH="$HERMES_PATH" yarn bootstrap ios "${args[@]}" | cat
89
+ RN_DEP_PATH=packages/react-native/third-party/ReactNativeDependencies${{ inputs.flavor }}.framework.dSYM.tar.gz
90
+ RCT_USE_LOCAL_RN_DEP="$RN_DEP_PATH" HERMES_ENGINE_TARBALL_PATH="$HERMES_PATH" yarn bootstrap ios "${args[@]}" | cat
82
91
fi
83
92
- name : Build HelloWorld project
84
93
shell : bash
Original file line number Diff line number Diff line change 92
92
else
93
93
echo 'No Hermes tarball found.'
94
94
fi
95
+ - name : Download ReactNativeDependencies
96
+ uses : actions/download-artifact@v4
97
+ with :
98
+ name : ReactNativeDependencies${{ inputs.flavor }}.framework.dSYM.tar.gz
99
+ path : packages/react-native/third-party
100
+ - name : Print third-party folder
101
+ shell : bash
102
+ run : ls -lR packages/react-native/third-party
95
103
- name : Setup xcode build cache
96
104
uses : ./.github/actions/setup-xcode-build-cache
97
105
with :
@@ -118,6 +126,8 @@ runs:
118
126
export RCT_NEW_ARCH_ENABLED=0
119
127
fi
120
128
129
+ export RCT_USE_LOCAL_RN_DEP=packages/react-native/third-party/ReactNativeDependencies${{ inputs.flavor }}.framework.dSYM.tar.gz
130
+
121
131
cd packages/rn-tester
122
132
123
133
bundle install
You can’t perform that action at this time.
0 commit comments