Skip to content

Commit 63557b8

Browse files
authored
ARROW-153 pkg-config is missing in GitHub Actions MacOS Runner (#131)
1 parent e2fa03b commit 63557b8

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
run: |
3333
mkdir data
3434
mongod --fork --dbpath=$(pwd)/data --logpath=$PWD/mongo.log
35+
- name: Install pkg-config
36+
run: brew install pkg-config
3537
- name: Install libbson
3638
run: |
3739
LIBBSON_INSTALL_DIR=$(pwd)/libbson ./build-libbson.sh

.github/workflows/release-python.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555
with:
5656
platforms: all
5757

58+
- name: Install pkg-config on MacOS
59+
if: runner.os == 'macOS'
60+
run: brew install pkg-config
61+
5862
- name: Install cibuildwheel
5963
run: python -m pip install "cibuildwheel>=2.4,<3"
6064

.github/workflows/test-python.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ jobs:
5959
run: |
6060
mkdir data
6161
mongod --fork --dbpath=$(pwd)/data --logpath=$PWD/mongo.log
62+
# Install pkg-config
63+
brew install pkg-config
6264
- name: Start MongoDB on Windows
6365
if: ${{ startsWith(runner.os, 'Windows') }}
6466
shell: powershell

0 commit comments

Comments
 (0)