From 9990e14133b9bedf0e3ae3e71a96de2e8ec68e40 Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Tue, 31 Dec 2024 11:16:24 +0100 Subject: [PATCH] fix: Do not install pkg-config via brew as it's already installed Installing pkg-config led to the following warning for each macOS pipeline: pkgconf 2.3.0_1 is already installed and up-to-date. To reinstall 2.3.0_1, run: brew reinstall pkgconf --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d924bc34d..8916253b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -88,7 +88,7 @@ jobs: run: | # We need to install GNU utils as the test-suite scripts expect it. # Without them we may get slightly different behavior in tests and hard-to-track failures - brew install pkg-config coreutils diffutils + brew install coreutils diffutils echo "PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig/" >> $GITHUB_ENV - name: '[Linux] Install dependencies'