From 5e5075b4b93fd268b6900914b944a26ff0fb0757 Mon Sep 17 00:00:00 2001 From: mio Date: Mon, 20 Feb 2023 20:27:31 +0100 Subject: [PATCH] Install pkg-config on macos runners --- .github/workflows/build-uc2.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-uc2.yml b/.github/workflows/build-uc2.yml index 7ee95894..ded889ef 100644 --- a/.github/workflows/build-uc2.yml +++ b/.github/workflows/build-uc2.yml @@ -305,7 +305,7 @@ jobs: if: contains(matrix.config.name, 'macos-x64') shell: bash run: | - brew install p7zip cmake ninja + brew install p7zip cmake ninja pkg-config ninja --version cmake --version mkdir build @@ -325,7 +325,7 @@ jobs: if: contains(matrix.config.name, 'android') shell: bash run: | - brew install p7zip cmake ninja + brew install p7zip cmake ninja pkg-config mkdir build mkdir instdir cmake . -DCMAKE_TOOLCHAIN_FILE="$ANDROID_NDK/build/cmake/android.toolchain.cmake" \