BlueWallet/ios/ci_scripts/ci_post_clone.sh
Marcos Rodriguez Velez 0cefaa04de
Update ci_post_clone.sh
2024-02-24 15:43:12 -04:00

19 lines
570 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
# LDK is not currently available for Catalyst, so we need to patch the wallet
cd ..
cp scripts/maccatalystpatches/lightning-ldk-wallet.ts class/wallets/lightning-ldk-wallet.ts