From a3d71023d0888b990f025ec36d60af592567df08 Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Wed, 2 Aug 2023 17:58:49 +0800 Subject: [PATCH] ci: install pkg-config on macOS worker --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5323629..f9e6085 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,10 @@ jobs: repository: rizinorg/rizin path: rizin ref: ${{ inputs.rizin_ref }} + + - name: Install pkg-config with Homebrew + if: matrix.os == 'macos-latest' && matrix.enabled + run: brew install pkg-config - name: Run rz-bindgen uses: pypa/cibuildwheel@v2.14.1