Skip to content

Commit 644d86c

Browse files
committed
add ninja
1 parent bd672c2 commit 644d86c

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/cmake-build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ jobs:
5353
with:
5454
xcode-version: '15.3'
5555

56+
# vcpkg requires ninja which isnt available by default on macos so we add it manually
57+
- name: Setup Ninja MacOS
58+
if: matrix.os == 'macos-latest'
59+
run: |
60+
brew install ninja
61+
echo "Ninja build system installed"
62+
5663
- name: Initialize vcpkg
5764
uses: lukka/run-vcpkg@v11
5865
with:

.github/workflows/cmake-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ jobs:
6161
with:
6262
xcode-version: '15.3'
6363

64+
# vcpkg requires ninja which isnt available by default on macos so we add it manually
65+
- name: Setup Ninja MacOS
66+
if: matrix.os == 'macos-latest'
67+
run: |
68+
brew install ninja
69+
echo "Ninja build system installed"
70+
6471
- name: Initialize vcpkg
6572
uses: lukka/run-vcpkg@v11
6673
with:

0 commit comments

Comments
 (0)