diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-09-20 21:49:57 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-09-20 21:49:57 +0100 |
commit | 43cd8029fa39e0bd4bf6fb896952952bcae16160 (patch) | |
tree | 491604329c71b68925c2e8710a95eba687d594d4 /.github | |
parent | 8247a8db6963d2116dc4697a3217d736c197f91d (diff) |
ci: Install Homebrew's `pkg-config` package
Some versions of macOS images lack the 'pkg-config' package, which is
required for the build process.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ef705250d..28a027b780 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: run: clang --version - name: Install Homebrew packages - run: brew install boost libevent qt@5 miniupnpc libnatpmp ccache zeromq qrencode libtool automake gnu-getopt + run: brew install automake libtool pkg-config gnu-getopt ccache boost libevent miniupnpc libnatpmp zeromq qt@5 qrencode - name: Set Ccache directory run: echo "CCACHE_DIR=${RUNNER_TEMP}/ccache_dir" >> "$GITHUB_ENV" |