diff options
author | James McCoy <jamessan@jamessan.com> | 2021-12-31 11:24:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-31 11:24:48 -0500 |
commit | fc62fdd42fde37949af3c6b6273acc1c116cb6f0 (patch) | |
tree | 9e7cb143785910208eaf0884ed342a6104b5c91d | |
parent | dc3a16abfca2ea12de0192e0782cb0a03c6e6035 (diff) | |
parent | 2a12e8ddfdff56cb01a8055b36bf546f079bc141 (diff) | |
download | rneovim-fc62fdd42fde37949af3c6b6273acc1c116cb6f0.tar.gz rneovim-fc62fdd42fde37949af3c6b6273acc1c116cb6f0.tar.bz2 rneovim-fc62fdd42fde37949af3c6b6273acc1c116cb6f0.zip |
Merge pull request #16846 from dundargoc/ci/remove-brew-workaround
ci: remove outdated brew workaround that isn't needed anymore
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2eef13098..a67a44407b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,8 +69,6 @@ jobs: - name: Install brew packages if: matrix.os == 'osx' run: | - # Workaround brew issues - rm -f /usr/local/bin/2to3 brew update >/dev/null brew install automake ccache perl cpanminus ninja diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5839be2944..5ad4c90eaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,7 +80,6 @@ jobs: fetch-depth: 0 - name: Install brew packages run: | - rm -f /usr/local/bin/2to3 brew update >/dev/null brew install automake ninja - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly') |