Skip to content

Commit e5fb2cc

Browse files
teo-tsirpanisihnorton
authored andcommitted
Use preinstalled pkg-config Homebrew recipe. (TileDB-Inc#5383)
[SC-59678](https://app.shortcut.com/tiledb-inc/story/59678/core-arrays-fix-ci-on-dev-branch) GitHub Actions now [bundles](actions/runner-images#10971) `pkg-config` in macOS images. This PR stops installing it with `brew`, which causes conflicts related to the recipe's deprecation and replacement with `pkgconf`. --- TYPE: NO_HISTORY
1 parent e4230db commit e5fb2cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci-linux_mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
if: ${{ startsWith(matrix.os, 'macos-') == true }}
144144
run: |
145145
set -e pipefail
146-
brew install automake pkg-config
146+
brew install automake
147147
148148
- name: 'Configure libtiledb'
149149
id: configure

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
# v4 uses node 20 which is incompatible with the libc version of the manylinux image
8585
uses: actions/checkout@v3
8686
- name: 'Homebrew setup'
87-
run: brew install automake pkg-config ninja
87+
run: brew install automake ninja
8888
if: ${{ startsWith(matrix.os, 'macos-') == true }}
8989
- name: Export GitHub Actions cache variables
9090
uses: actions/github-script@v6

.github/workflows/unit-test-runs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222

2323
- name: 'Homebrew setup'
24-
run: brew install automake pkg-config
24+
run: brew install automake
2525
if: ${{ startsWith(matrix.os, 'macos-') }}
2626

2727
- name: Install Ninja

0 commit comments

Comments
 (0)