mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +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
16 lines
375 B
Bash
16 lines
375 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.sh
|
|
|
|
echo "Installing GCC@8 using homebrew..."
|
|
brew_smart_install "gcc@8"
|
|
|
|
echo "Installing GCC@9 using homebrew..."
|
|
brew_smart_install "gcc@9"
|
|
|
|
# https://github.com/actions/virtual-environments/issues/1280
|
|
echo "Installing GCC@10 using homebrew..."
|
|
brew_smart_install "gcc@10"
|
|
rm $(which gfortran)
|
|
|
|
invoke_tests "Common" "GCC"
|