Merge pull request #1113 from amirmalka/fix-macos-build

Fix macos build - add missing pkg-config
This commit is contained in:
David Wertenteil
2023-02-21 10:19:06 +02:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -136,6 +136,10 @@ jobs:
run: .\build.bat all
if: matrix.os == 'windows-latest'
- name: Install pkg-config (macOS)
run: brew install pkg-config
if: matrix.os == 'macos-latest'
- name: Install libgit2 (Linux/macOS)
run: make libgit2
if: matrix.os != 'windows-latest'

View File

@@ -130,6 +130,10 @@ jobs:
run: .\build.bat all
if: matrix.os == 'windows-latest'
- name: Install pkg-config (macOS)
run: brew install pkg-config
if: matrix.os == 'macos-latest'
- name: Install libgit2 (Linux/macOS)
run: make libgit2
if: matrix.os != 'windows-latest'