From 0e7efe88a37aa90a65b94f3a77f669d852cddc65 Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Tue, 31 Dec 2024 11:16:24 +0100 Subject: [PATCH] fix: Simplify Mac OS dependency install and clear warning 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 Additionally, we have support for any OpenSSL version, so don't force v1.1. --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d924bc34d..8682c2d82 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -88,8 +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 - echo "PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig/" >> $GITHUB_ENV + brew install coreutils diffutils - name: '[Linux] Install dependencies' if: runner.os == 'Linux'