2020-10-23 17:59:08 +03:00
|
|
|
#!/bin/bash -e -o pipefail
|
2020-12-28 10:54:25 +03:00
|
|
|
source ~/utils/utils.sh
|
2020-09-10 14:34:08 +03:00
|
|
|
|
|
|
|
|
echo "Installing GCC@8 using homebrew..."
|
2020-12-28 10:54:25 +03:00
|
|
|
brew_smart_install "gcc@8"
|
2020-09-10 14:34:08 +03:00
|
|
|
|
|
|
|
|
echo "Installing GCC@9 using homebrew..."
|
2020-12-28 10:54:25 +03:00
|
|
|
brew_smart_install "gcc@9"
|
2020-12-03 18:40:19 +03:00
|
|
|
|
|
|
|
|
# https://github.com/actions/virtual-environments/issues/1280
|
|
|
|
|
echo "Installing GCC@10 using homebrew..."
|
2020-12-28 10:54:25 +03:00
|
|
|
brew_smart_install "gcc@10"
|
2020-12-23 22:14:13 +07:00
|
|
|
rm $(which gfortran)
|
|
|
|
|
|
2020-12-28 10:54:25 +03:00
|
|
|
invoke_tests "Common" "GCC"
|