Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud failed to install brew?
You can use gem bundler in ci_post_clone.sh # !/bin/sh   cd ..   echo ">>> SETUP ENVIRONMENT" echo 'export GEM_HOME=$HOME/gems' >>~/.bash_profile echo 'export PATH=$HOME/gems/bin:$PATH' >>~/.bash_profile export GEM_HOME=$HOME/gems export PATH="$GEM_HOME/bin:$PATH"   echo ">>> INSTALL BUNDLER" gem install bundler --install-dir $GEM_HOME   echo ">>> INSTALL DEPENDENCIES" bundle install   echo ">>> INSTALL PODS" bundle exec pod install You also create Gemfile same level with ci_scripts folder in Gemfile source "https://rubygems.org" gem 'cocoapods'
Mar ’23
Reply to App store connect reports download error
same issues here, anyone know how to fix it? I cleared safary cached, but not does not work
Replies
Boosts
Views
Activity
Jun ’26
Reply to Xcode Cloud failed to install brew?
You can use gem bundler in ci_post_clone.sh # !/bin/sh   cd ..   echo ">>> SETUP ENVIRONMENT" echo 'export GEM_HOME=$HOME/gems' >>~/.bash_profile echo 'export PATH=$HOME/gems/bin:$PATH' >>~/.bash_profile export GEM_HOME=$HOME/gems export PATH="$GEM_HOME/bin:$PATH"   echo ">>> INSTALL BUNDLER" gem install bundler --install-dir $GEM_HOME   echo ">>> INSTALL DEPENDENCIES" bundle install   echo ">>> INSTALL PODS" bundle exec pod install You also create Gemfile same level with ci_scripts folder in Gemfile source "https://rubygems.org" gem 'cocoapods'
Replies
Boosts
Views
Activity
Mar ’23
Reply to rvictl not working on big sur and ios 14 beta 3
This's post has solution https://developer.apple.com/forums/thread/655329?answerId=674594022#674594022
Replies
Boosts
Views
Activity
Aug ’21