Skip to content

Commit

Permalink
use --overwrite when installing with brew
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmuhs committed Mar 14, 2024
1 parent a93fa71 commit 9a82f8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/keyvi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if: runner.os == 'macOS'
run: |
brew update
brew install zlib snappy boost
brew install --overwrite zlib snappy boost
- name: checkout from git
uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ jobs:
if: ${{ runner.os == 'macOS' }}
run: |
brew update && \
brew install ccache
brew install --overwrite ccache
- name: install mac dependencies X86_64
if: ${{ (runner.os == 'macOS') && (matrix.arch == 'x86_64') }}
run: |
brew update && \
brew install zlib snappy boost
brew install --overwrite zlib snappy boost
- name: install mac dependencies arm64
if: ${{ (runner.os == 'macOS') && (matrix.arch == 'arm64') }}
Expand Down

0 comments on commit 9a82f8d

Please sign in to comment.