mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
16 lines
524 B
Bash
16 lines
524 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-compilable-brew-packages.sh
|
|
## Desc: Install compilable brew packages
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
compilable_packages=$(get_toolset_value '.brew.compilable_packages[]')
|
|
for package in $compilable_packages; do
|
|
echo "Installing $package..."
|
|
brew_smart_install "$package"
|
|
done
|
|
|
|
invoke_tests "Common" "Compiled"
|