-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d698f0f
commit 8321f47
Showing
3 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|