mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
127 lines
4.8 KiB
Bash
127 lines
4.8 KiB
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-common-utils.sh
|
|
## Desc: Install utils listed in toolset file
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
common_packages=$(get_toolset_value '.brew.common_packages[]')
|
|
for package in $common_packages; do
|
|
echo "Installing $package..."
|
|
case "$package" in
|
|
packer)
|
|
# Packer has been deprecated in Homebrew. Use tap to install Packer.
|
|
brew install hashicorp/tap/packer
|
|
;;
|
|
|
|
kotlin)
|
|
# Pin kotlin bottle to 2.1.10 due to an issue with the latest version
|
|
# https://youtrack.jetbrains.com/issue/KT-76169/kotlinc-js-version-and-kapt-version-returning-non-zero-status-code-on-v2.1.20
|
|
kotlin_commit="442af88a2925f8c0e079eaf4fa62261133d2d7c4"
|
|
kotlin_rb_link="https://raw.githubusercontent.com/Homebrew/homebrew-core/$kotlin_commit/Formula/k/kotlin.rb"
|
|
kotlin_rb_path=$(download_with_retry "$kotlin_rb_link")
|
|
brew install "$kotlin_rb_path"
|
|
;;
|
|
|
|
cmake)
|
|
# Pin cmake bottle to 3.31.6 due to a backward compatibility issue with the latest version
|
|
# https://github.com/actions/runner-images/issues/11926
|
|
cmake_commit="b4e46db74e74a8c1650b38b1da222284ce1ec5ce"
|
|
cmake_rb_link="https://raw.githubusercontent.com/Homebrew/homebrew-core/$cmake_commit/Formula/c/cmake.rb"
|
|
cmake_rb_path=$(download_with_retry "$cmake_rb_link")
|
|
brew install "$cmake_rb_path"
|
|
;;
|
|
|
|
tcl-tk@8)
|
|
brew_smart_install "$package"
|
|
if is_VenturaX64 || is_SonomaX64; then
|
|
# Fix for https://github.com/actions/runner-images/issues/11074
|
|
ln -sf "$(brew --prefix tcl-tk@8)/lib/libtcl8.6.dylib" /usr/local/lib/libtcl8.6.dylib
|
|
ln -sf "$(brew --prefix tcl-tk@8)/lib/libtk8.6.dylib" /usr/local/lib/libtk8.6.dylib
|
|
fi
|
|
;;
|
|
|
|
# Default behaviour for all other packages
|
|
*)
|
|
brew_smart_install "$package"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
cask_packages=$(get_toolset_value '.brew.cask_packages[]')
|
|
for package in $cask_packages; do
|
|
echo "Installing $package..."
|
|
if is_Arm64 && [[ $package == "parallels" ]]; then
|
|
echo "Parallels installation is skipped for arm64 architecture"
|
|
else
|
|
brew install --cask $package
|
|
fi
|
|
done
|
|
|
|
# Load "Parallels International GmbH"
|
|
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
|
sudo kextload /Applications/Parallels\ Desktop.app/Contents/Library/Extensions/10.9/prl_hypervisor.kext || true
|
|
fi
|
|
|
|
# Execute AppleScript to change security preferences for macOS12, macOS13, macOS14 and macOS15
|
|
# System Preferences -> Security & Privacy -> General -> Unlock -> Allow -> Not now
|
|
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
|
for retry in {4..0}; do
|
|
echo "Executing AppleScript to change security preferences. Retries left: $retry"
|
|
{
|
|
set -e
|
|
osascript -e 'tell application "System Events" to get application processes where visible is true'
|
|
if is_VenturaX64; then
|
|
osascript $HOME/utils/confirm-identified-developers-macos13.scpt $USER_PASSWORD
|
|
fi
|
|
|
|
if is_SonomaX64; then
|
|
osascript $HOME/utils/confirm-identified-developers-macos14.scpt $USER_PASSWORD
|
|
fi
|
|
if is_SequoiaX64; then
|
|
osascript $HOME/utils/confirm-identified-developers-macos15.scpt $USER_PASSWORD
|
|
fi
|
|
} && break
|
|
|
|
if [[ $retry -eq 0 ]]; then
|
|
echo "Executing AppleScript failed. No retries left"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Executing AppleScript failed. Sleeping for 10 seconds and retrying"
|
|
sleep 10
|
|
done
|
|
fi
|
|
|
|
# Validate "Parallels International GmbH" kext
|
|
if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
|
|
|
|
echo "Closing System Settings window if it is still opened"
|
|
killall "System Settings" || true
|
|
|
|
echo "Checking parallels kexts"
|
|
dbName="/var/db/SystemPolicyConfiguration/KextPolicy"
|
|
dbQuery="SELECT * FROM kext_policy WHERE bundle_id LIKE 'com.parallels.kext.%';"
|
|
kext=$(sudo sqlite3 $dbName "$dbQuery")
|
|
|
|
if [[ -z $kext ]]; then
|
|
echo "Parallels International GmbH not found"
|
|
exit 1
|
|
fi
|
|
|
|
# Create env variable
|
|
url=$(brew info --json=v2 --installed | jq -r '.casks[] | select(.name[] == "Parallels Desktop").url')
|
|
if [[ -z $url ]]; then
|
|
echo "Unable to parse url for Parallels Desktop cask"
|
|
exit 1
|
|
fi
|
|
echo "export PARALLELS_DMG_URL=$url" >> ${HOME}/.bashrc
|
|
fi
|
|
|
|
# Install Azure DevOps extension for Azure Command Line Interface
|
|
az extension add -n azure-devops
|
|
|
|
# Invoke tests for all basic tools
|
|
invoke_tests "BasicTools"
|