-
Notifications
You must be signed in to change notification settings - Fork 186
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
2d2ed4c
commit c1f16fd
Showing
3 changed files
with
3 additions
and
15 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 |
---|---|---|
|
@@ -139,15 +139,11 @@ jobs: | |
if: inputs.cmake_generator == 'Ninja' | ||
uses: seanmiddleditch/gha-setup-ninja@v4 | ||
|
||
# Remove pre-installed legacy pkg-config package. | ||
# See https://github.com/actions/runner-images/issues/10984 | ||
# and https://github.com/dotnet/runtime/pull/109968 | ||
- name: 'Brew setup on macOS' # x-ref c8e49ba8f8b9ce | ||
if: ${{ startsWith(matrix.os, 'macos-') == true }} | ||
run: | | ||
set -e pipefail | ||
brew uninstall --ignore-dependencies --force [email protected] | ||
brew install automake pkgconf | ||
brew install automake | ||
- name: 'Configure libtiledb' | ||
id: configure | ||
|
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 |
---|---|---|
|
@@ -83,13 +83,9 @@ jobs: | |
- name: Checkout TileDB | ||
# v4 uses node 20 which is incompatible with the libc version of the manylinux image | ||
uses: actions/checkout@v3 | ||
# Remove pre-installed legacy pkg-config package. | ||
# See https://github.com/actions/runner-images/issues/10984 | ||
# and https://github.com/dotnet/runtime/pull/109968 | ||
- name: 'Homebrew setup' | ||
run: | | ||
brew uninstall --ignore-dependencies --force [email protected] | ||
brew install automake pkgconf ninja | ||
brew install automake 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 |
---|---|---|
|
@@ -20,13 +20,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Remove pre-installed legacy pkg-config package. | ||
# See https://github.com/actions/runner-images/issues/10984 | ||
# and https://github.com/dotnet/runtime/pull/109968 | ||
- name: 'Homebrew setup' | ||
run: | | ||
brew uninstall --ignore-dependencies --force [email protected] | ||
brew install automake pkgconf | ||
brew install automake | ||
if: ${{ startsWith(matrix.os, 'macos-') }} | ||
|
||
- name: Install Ninja | ||
|