Fix: [Actions] vcpkg needs pkg-config to build zlib on macOS (#10488)

This commit is contained in:
Loïc Guilloux 2023-02-16 22:35:51 +01:00 committed by rubidium42
parent da9f226f0b
commit 617d794af6
2 changed files with 13 additions and 1 deletions

View File

@ -168,6 +168,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
env:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
run: |
brew install \
pkg-config \
# EOF
- name: Prepare cache key
id: key
run: |

View File

@ -26,7 +26,10 @@ jobs:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
run: |
brew install pandoc
brew install \
pandoc \
pkg-config \
# EOF
- name: Prepare cache key
id: key