Skip to content

Commit

Permalink
fix ci script (#13)
Browse files Browse the repository at this point in the history
* remove gems

* install cocoapods

* install gems

* test

* update ci

* fix

* test

* adjust ci sciprt
  • Loading branch information
TheTrunk authored Oct 26, 2023
1 parent eefae10 commit ffc2b56
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ios/ci_scripts/ci_post_clone.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export NODE_OPTIONS=--max_old_space_size=8192

# Install CocoaPods and yarn using Homebrew.
brew install cocoapods
brew install ruby
brew install rbenv ruby-build
brew install node@18
brew link node@18
brew install yarn
Expand All @@ -16,7 +16,12 @@ export GEM_HOME=$HOME/gems
export PATH="$GEM_HOME/bin:$PATH"

echo ">>> INSTALL BUNDLER"
gem update --system 3.2.3
ruby -v
rbenv init
rbenv install 2.7.8
rbenv global 2.7.8
eval "$(rbenv init -)"
ruby -v
gem install bundler --install-dir $GEM_HOME

# Install dependencies
Expand Down

0 comments on commit ffc2b56

Please sign in to comment.