-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
42 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# How to use | ||
|
||
`npm install` | ||
|
||
`npm run cli` | ||
|
||
|
||
There are two commands for the cli tool: | ||
`init` and `test` | ||
|
||
|
||
`npm run cli init -- --react-native-version next --realm-version latest` | ||
|
||
ran into issues using `bundle` to run pod install and so. Not looking into this right now |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
install-tests/react-native/patches/ccache-Podfile-pre-73.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- app/ios/Podfile | ||
+++ app/ios/Podfile | ||
@@ -39,5 +39,15 @@ | ||
:mac_catalyst_enabled => false | ||
) | ||
__apply_Xcode_12_5_M1_post_install_workaround(installer) | ||
+ # Using ccache when building | ||
+ installer.pods_project.targets.each do |target| | ||
+ target.build_configurations.each do |config| | ||
+ # Using the un-qualified names means you can swap in different implementations, for example ccache | ||
+ config.build_settings["CC"] = "clang" | ||
+ config.build_settings["LD"] = "clang" | ||
+ config.build_settings["CXX"] = "clang++" | ||
+ config.build_settings["LDPLUSPLUS"] = "clang++" | ||
+ end | ||
+ end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.