diff options
author | Oliver Marriott <rktjmp@users.noreply.github.com> | 2021-07-18 00:59:39 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 16:59:39 +0200 |
commit | 5377b2b00aea1a0bde1b81452e6198dabe5b9796 (patch) | |
tree | 376da1426071924629b5b4d22c4aee5f9b79936b | |
parent | d8f5f4d09078e7d52d1abd13418133da10b2cc27 (diff) | |
download | rneovim-5377b2b00aea1a0bde1b81452e6198dabe5b9796.tar.gz rneovim-5377b2b00aea1a0bde1b81452e6198dabe5b9796.tar.bz2 rneovim-5377b2b00aea1a0bde1b81452e6198dabe5b9796.zip |
fix(ci): remove mongodb from brew to avoid brew upgrade error (#15115)
macOS CI was failing because:
- brew upgrade fails because,
- mongodb-community cant upgrade because,
- some symlinks are owned by ... mongodb-community...
We don't use mogodb, so we can just remove it wholesale.
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa16a94802..ca850c577b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,6 +64,8 @@ jobs: # Workaround brew issues rm -f /usr/local/bin/2to3 brew update >/dev/null + # remove broken mongodb-community package + brew remove mongodb-community brew upgrade brew install automake ccache perl cpanminus ninja |