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 GitHub
parent fdfcb09aa3
commit 27cbb81df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -169,6 +169,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