From 458c96727c07b3a2b1362285f8ccd4aae2b3c99f Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Mon, 14 Apr 2025 12:49:34 +0200 Subject: [PATCH] CI: Install pkg-config in setup We have this package listed in our build instructions but did not install it for CI, causing some errors on new/clean runners. --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 0689ee2d6f3..7188db0bb01 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -110,7 +110,7 @@ runs: run: | set -e brew update - brew install autoconf autoconf-archive automake bash ccache coreutils llvm@19 nasm ninja qt unzip wabt + brew install autoconf autoconf-archive automake bash ccache coreutils llvm@19 nasm ninja pkg-config qt unzip wabt - name: 'Set required environment variables' if: ${{ inputs.os == 'Linux' && inputs.arch == 'arm64' }}