Skip to content

Commit

Permalink
Merge pull request #8565 from ThomasWaldmann/pkgconf
Browse files Browse the repository at this point in the history
macos: fix broken brew pkg-config -> pkgconf transition
  • Loading branch information
ThomasWaldmann authored Nov 24, 2024
2 parents b8fe10d + 41f150f commit 4c1e2bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ jobs:
${{ runner.os }}-
- name: Install macOS packages
run: brew bundle install
run: |
brew unlink [email protected] || true
brew bundle install
- name: Install Python requirements
run: |
Expand Down
2 changes: 1 addition & 1 deletion Brewfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
brew 'pkg-config'
brew 'pkgconf'
brew 'zstd'
brew 'lz4'
brew 'xxhash'
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def packages_macos
# now brew, curl, ca-certificates, openssl@3 should be all ok.
brew update
brew install pkg-config readline xxhash zstd lz4 xz
brew install pkgconf readline xxhash zstd lz4 xz
brew install --cask macfuse
# brew upgrade # upgrade everything (takes rather long)
# pyenv shall use the openssl@3 from homebrew:
Expand Down

0 comments on commit 4c1e2bc

Please sign in to comment.