aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/darwin.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/darwin.yml')
-rw-r--r--.github/workflows/darwin.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml
index b4ea3d11..10d40007 100644
--- a/.github/workflows/darwin.yml
+++ b/.github/workflows/darwin.yml
@@ -9,11 +9,14 @@ jobs:
- name: Check out code
uses: actions/checkout@v1
+ - name: Install ninja
+ run: brew install ninja
+
- name: Configure
- run: mkdir build && cd build && cmake ..
+ run: mkdir build && cd build && cmake -G Ninja ..
- name: build
- run: cmake --build build
+ run: cd build && ninja
- name: Test
run: cd build && ctest --output-on-failure \ No newline at end of file