Skip to content

Commit 8a6f4e5

Browse files
committed
Install pkg-config for other workflows
1 parent 2d5d72e commit 8a6f4e5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/Crate-publishing.yml

+6
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ jobs:
6767
run: |
6868
choco install ninja cmake
6969
70+
- name: '🛠️ macOS build dependencies'
71+
if: contains(matrix.config.os, 'macOS')
72+
shell: bash
73+
run: |
74+
brew install p7zip cmake ninja pkg-config
75+
7076
- name: '🚧 Cargo test'
7177
if: "!startsWith(github.ref, 'refs/tags')"
7278
run: |

.github/workflows/Nuget-publishing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
if: contains(matrix.config.name, 'macos-x64')
157157
shell: bash
158158
run: |
159-
brew install p7zip cmake ninja
159+
brew install p7zip cmake ninja pkg-config
160160
ninja --version
161161
cmake --version
162162
mkdir build

0 commit comments

Comments
 (0)