# HG changeset patch # User Loïc Guilloux # Date 2023-02-16 21:35:51 # Node ID 35eb2021ebb7c8513f390918fcde10b0db714797 # Parent 071a237e4b4cd61ca2477dc7b5331d0bda6a4f69 Fix: [Actions] vcpkg needs pkg-config to build zlib on macOS (#10488) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -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: | diff --git a/.github/workflows/release-macos.yml b/.github/workflows/release-macos.yml --- a/.github/workflows/release-macos.yml +++ b/.github/workflows/release-macos.yml @@ -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