diff options
author | James McCoy <jamessan@jamessan.com> | 2021-01-11 00:01:37 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-01-11 00:01:37 -0500 |
commit | 6d67cf8647d251df4b1ded60b4ae3d49a1f73ad3 (patch) | |
tree | 84b896a8e44f2ca309da3da25c0f3c751aa0cd8b | |
parent | 0f03b3f3aa55db827eecccb70b9d216c2fcb2524 (diff) | |
download | rneovim-6d67cf8647d251df4b1ded60b4ae3d49a1f73ad3.tar.gz rneovim-6d67cf8647d251df4b1ded60b4ae3d49a1f73ad3.tar.bz2 rneovim-6d67cf8647d251df4b1ded60b4ae3d49a1f73ad3.zip |
ci(gha): brew unlink gcc@8/@9 to fix upgrade issues
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be4e973b22..34c3b2b4bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,9 @@ jobs: - name: Install brew packages if: matrix.os == 'osx' run: | + # Workaround brew issues rm -f /usr/local/bin/2to3 + brew unlink gcc@8 gcc@9 brew update >/dev/null brew upgrade brew install automake ccache cpanminus ninja diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 577961ede3..753142e555 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,6 +76,7 @@ jobs: - name: Install brew packages run: | rm -f /usr/local/bin/2to3 + brew unlink gcc@8 gcc@9 brew update >/dev/null brew upgrade brew install automake ninja |