mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 20:56:47 +00:00
* get rid of invoke_tests imports * add sudo * change path to /usr/bin/invoke_tests * create /usr/local/bin dir * remove local variables * fix group owner * set default 775 perm * delete invoke_tests symlink
11 lines
248 B
Bash
Executable File
11 lines
248 B
Bash
Executable File
#!/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"
|