From 141226aed341a5d6cb029895817adad5275cba9e Mon Sep 17 00:00:00 2001 From: Evan Kaloudis Date: Fri, 1 Nov 2024 21:53:09 -0400 Subject: [PATCH] Xcode Cloud: post clone sc ript --- ios/ci_scripts/ci_post_clone.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ios/ci_scripts/ci_post_clone.sh diff --git a/ios/ci_scripts/ci_post_clone.sh b/ios/ci_scripts/ci_post_clone.sh new file mode 100644 index 000000000..3a08b595d --- /dev/null +++ b/ios/ci_scripts/ci_post_clone.sh @@ -0,0 +1,17 @@ +#!/bin/zsh + +echo "===== Installling CocoaPods =====" +export HOMEBREW_NO_INSTALL_CLEANUP=TRUE +brew install cocoapods +echo "===== Installing Node.js =====" +brew install node@22 +brew link node@22 +echo "===== Installing yarn =====" +brew install yarn + +# Install dependencies +echo "===== Running yarn install =====" +yarn install +echo "===== Running pod install =====" +cd ios +pod install