Skip to content

Commit

Permalink
Xcode Cloud: post clone sc
Browse files Browse the repository at this point in the history
ript
  • Loading branch information
kaloudis committed Nov 2, 2024
1 parent 5a450d9 commit 449338d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ios/ci_scripts/ci_post_close.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/zsh

echo "===== Installling CocoaPods ====="
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
brew install cocoapods
echo "===== Installing Node.js ====="
brew install node@22
echo "===== Installing yarn ====="
brew install yarn

# Install dependencies
echo "===== Running yarn install ====="
yarn install
echo "===== Running pod install ====="
cd ios
pod install

0 comments on commit 449338d

Please sign in to comment.