mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
7 lines
135 B
Bash
7 lines
135 B
Bash
#!/bin/bash
|
|
|
|
echo "Installing GCC@8 using homebrew..."
|
|
brew install gcc@8
|
|
|
|
echo "Installing GCC@9 using homebrew..."
|
|
brew install gcc@9 |