mastodon-ios/ci_scripts/ci_post_clone.sh

34 lines
461 B
Bash
Executable File

#!/bin/zsh
# Xcode Cloud scripts
set -xeu
set -o pipefail
# list hardware
system_profiler SPSoftwareDataType SPHardwareDataType
echo $PWD
cd $CI_WORKSPACE
echo $PWD
# install rbenv
brew install rbenv
which ruby
echo 'eval "$(rbenv init -)"' >> ~/.zprofile
source ~/.zprofile
which ruby
rbenv install 3.0.3
rbenv global 3.0.3
ruby --version
# install bundle gem
gem install bundler
# setup gems
bundle install
bundle exec arkana
bundle exec pod install