Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/remote-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
IS_HYBRID_APP: ${{ matrix.is_hybrid_build }}
# Forces React Native to build from source to include our custom patches
RCT_USE_RN_DEP: 0
RCT_USE_PREBUILT_RNCORE: 0
with:
destination: simulator
scheme: ${{ matrix.scheme }}
Expand Down
1 change: 1 addition & 0 deletions scripts/run-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ else
fi

# Check if the argument is one of the desired values
# RCT_USE_RN_DEP=0 RCT_USE_PREBUILT_RNCORE=0 - force React Native to build from source to include our custom patches
case "$BUILD" in
--ios)
RCT_USE_RN_DEP=0 RCT_USE_PREBUILT_RNCORE=0 npx rock run:ios --configuration $IOS_MODE --scheme "$SCHEME" --dev-server
Expand Down
Loading