mirror of
https://github.com/actions/runner-images.git
synced 2025-12-30 05:49:48 +08:00
12 lines
297 B
Bash
12 lines
297 B
Bash
#!/bin/bash -e -o pipefail
|
|
|
|
echo "Installing GCC@8 using homebrew..."
|
|
brew install gcc@8
|
|
|
|
echo "Installing GCC@9 using homebrew..."
|
|
brew install gcc@9
|
|
|
|
# https://github.com/actions/virtual-environments/issues/1280
|
|
echo "Installing GCC@10 using homebrew..."
|
|
brew install gcc@10
|
|
rm $(which gfortran) |