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

pull/491/head
Loïc Guilloux 1 year ago committed by GitHub
parent fdfcb09aa3
commit 27cbb81df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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: |

@ -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

Loading…
Cancel
Save