mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[ci] Try to fix macOS build
It seems that Homebrew now packages an alternative implementation of pkg-config called pkgconf and some of the packages we install depend on it, and installing both pkgconf and pkg-config is not supported. Looks like pkgconf can’t find dependencies for us, so we do some brew unlink/link dance to get both installed, and hope for the best.
This commit is contained in:
parent
b14def8bb3
commit
5002153e3a
1 changed files with 3 additions and 0 deletions
3
.github/workflows/macos-ci.yml
vendored
3
.github/workflows/macos-ci.yml
vendored
|
@ -24,6 +24,7 @@ jobs:
|
|||
run: |
|
||||
export HOMEBREW_NO_AUTO_UPDATE=1
|
||||
export HOMEBREW_NO_INSTALL_CLEANUP=1
|
||||
brew unlink pkg-config || true
|
||||
brew install \
|
||||
cairo \
|
||||
freetype \
|
||||
|
@ -34,6 +35,8 @@ jobs:
|
|||
meson \
|
||||
ninja \
|
||||
pkg-config
|
||||
brew unlink pkgconf || true
|
||||
brew link pkg-config || true
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
|
||||
with:
|
||||
|
|
Loading…
Add table
Reference in a new issue