mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
11 lines
248 B
Bash
11 lines
248 B
Bash
#!/bin/bash -e -o pipefail
|
|
|
|
# Setup the Cocoapods
|
|
echo "Installing Cocoapods..."
|
|
pod setup
|
|
|
|
# Create a symlink to /usr/local/bin since it was removed due to Homebrew change.
|
|
ln -sf $(which pod) /usr/local/bin/pod
|
|
|
|
invoke_tests "Common" "CocoaPods"
|