File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,10 @@ jobs:
143
143
if : ${{ startsWith(matrix.os, 'macos-') == true }}
144
144
run : |
145
145
set -e pipefail
146
+ # Remove pre-installed legacy pkg-config package.
147
+ # See https://github.com/actions/runner-images/issues/10984
148
+ # and https://github.com/dotnet/runtime/pull/109968
149
+ brew uninstall --ignore-dependencies --force [email protected]
146
150
brew install automake pkgconf
147
151
148
152
- name : ' Configure libtiledb'
Original file line number Diff line number Diff line change 84
84
# v4 uses node 20 which is incompatible with the libc version of the manylinux image
85
85
uses : actions/checkout@v3
86
86
- name : ' Homebrew setup'
87
- run : brew install automake pkgconf ninja
87
+ run : |
88
+ # Remove pre-installed legacy pkg-config package.
89
+ # See https://github.com/actions/runner-images/issues/10984
90
+ # and https://github.com/dotnet/runtime/pull/109968
91
+ brew uninstall --ignore-dependencies --force [email protected]
92
+ brew install automake pkgconf ninja
88
93
if : ${{ startsWith(matrix.os, 'macos-') == true }}
89
94
- name : Export GitHub Actions cache variables
90
95
uses : actions/github-script@v6
Original file line number Diff line number Diff line change 21
21
- uses : actions/checkout@v3
22
22
23
23
- name : ' Homebrew setup'
24
- run : brew install automake pkgconf
24
+ run : |
25
+ # Remove pre-installed legacy pkg-config package.
26
+ # See https://github.com/actions/runner-images/issues/10984
27
+ # and https://github.com/dotnet/runtime/pull/109968
28
+ brew uninstall --ignore-dependencies --force [email protected]
29
+ brew install automake pkgconf
25
30
if : ${{ startsWith(matrix.os, 'macos-') }}
26
31
27
32
- name : Install Ninja
You can’t perform that action at this time.
0 commit comments