forked from ir-engine/ir-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add deployment stub * Add altool validation step * Skip screenshot test for now * Fix upload package command * Add todo * Update profile * Fix PODFILE * Add RN build script * Comment out testflight deploy for now * Switch back to automatic signing * Fix build script * Fix build script * Update bundler * Fix bundler install * Pin bundler version * Fix npm install * Remove unused github action
- Loading branch information
Showing
5 changed files
with
56 additions
and
17 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
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,34 @@ | ||
#!/bin/sh | ||
|
||
cd ../.. | ||
ls | ||
|
||
echo "===== Installling Gems =====" | ||
echo 'export GEM_HOME=$HOME/gems' >> ~/.zshrc | ||
echo 'export PATH=$HOME/gems/bin:$PATH' >> ~/.zshrc | ||
source ~/.zshrc | ||
|
||
export GEM_HOME=$HOME/gems | ||
export PATH="$GEM_HOME/bin:$PATH" | ||
|
||
echo ">>> INSTALL BUNDLER" | ||
gem install bundler:2.4.10 --install-dir $GEM_HOME | ||
bundle --version | ||
bundle install | ||
|
||
echo "===== Installing Node.js =====" | ||
brew install node@20 | ||
echo 'export PATH="/usr/local/opt/node@20/bin:$PATH"' >> ~/.zshrc | ||
source ~/.zshrc | ||
node -v | ||
npm -v | ||
|
||
# Install dependencies | ||
echo "===== Install JavaScript Dependencies =====" | ||
cd ../.. | ||
npm install -g patch-package | ||
npm install | ||
echo "===== Install Native Dependencies =====" | ||
cd packages/clientNative | ||
npm install | ||
bundle exec pod install --project-directory=ios |
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 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 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