BlueWallet/ios/ci_scripts/ci_post_clone.sh
2024-02-28 15:28:35 -04:00

16 lines
No EOL
393 B
Bash
Executable file

#!/bin/zsh
echo "===== Installling CocoaPods ====="
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
brew install cocoapods
echo "===== Installing Node.js ====="
brew install node@21
echo "===== Installing yarn (Xcode Cloud doenst like NPM ) ====="
brew install yarn
# Install dependencies
echo "===== Running yarn install ====="
yarn install
echo "===== Running pod install ====="
cd ios
pod install