Skip to content

Commit

Permalink
fix: Do not install pkg-config via brew as it's already installed
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Geod24 committed Dec 31, 2024
1 parent 7f7fe5e commit 9990e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]/lib/pkgconfig/" >> $GITHUB_ENV
- name: '[Linux] Install dependencies'
Expand Down

0 comments on commit 9990e14

Please sign in to comment.