Skip to content

Commit

Permalink
Uninstall pre-existing pkg-config.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Nov 21, 2024
1 parent d698f0f commit 8321f47
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci-linux_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ jobs:
if: ${{ startsWith(matrix.os, 'macos-') == true }}
run: |
set -e pipefail
# Remove pre-installed legacy pkg-config package.
# See https://github.com/actions/runner-images/issues/10984
# and https://github.com/dotnet/runtime/pull/109968
brew uninstall --ignore-dependencies --force [email protected]
brew install automake pkgconf
- name: 'Configure libtiledb'
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,12 @@ jobs:
# v4 uses node 20 which is incompatible with the libc version of the manylinux image
uses: actions/checkout@v3
- name: 'Homebrew setup'
run: brew install automake pkgconf ninja
run: |
# Remove pre-installed legacy pkg-config package.
# See https://github.com/actions/runner-images/issues/10984
# and https://github.com/dotnet/runtime/pull/109968
brew uninstall --ignore-dependencies --force [email protected]
brew install automake pkgconf ninja
if: ${{ startsWith(matrix.os, 'macos-') == true }}
- name: Export GitHub Actions cache variables
uses: actions/github-script@v6
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/unit-test-runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
- uses: actions/checkout@v3

- name: 'Homebrew setup'
run: brew install automake pkgconf
run: |
# Remove pre-installed legacy pkg-config package.
# See https://github.com/actions/runner-images/issues/10984
# and https://github.com/dotnet/runtime/pull/109968
brew uninstall --ignore-dependencies --force [email protected]
brew install automake pkgconf
if: ${{ startsWith(matrix.os, 'macos-') }}

- name: Install Ninja
Expand Down

0 comments on commit 8321f47

Please sign in to comment.