mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
12 lines
248 B
Bash
12 lines
248 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.sh
|
|
|
|
echo Installing PHP
|
|
phpVersionToolset=$(get_toolset_value '.php.version')
|
|
brew_smart_install "php@${phpVersionToolset}"
|
|
|
|
echo Installing composer
|
|
brew_smart_install "composer"
|
|
|
|
invoke_tests "PHP"
|