We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea2673 commit 0a2b0fcCopy full SHA for 0a2b0fc
.github/workflows/ci-macos.yml
@@ -89,12 +89,11 @@ jobs:
89
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
90
91
- name: Install Ninja
92
- run: brew install cmake ninja # /usr/local/bin/ninja
93
-
94
- - name: Where is Ninja
95
- run: |
96
- which ninja
97
- ninja --version
+ run: brew install ninja
+ # Actual: /usr/local/bin/ninja
+ # Searched: /opt/homebrew/bin/ninja
+ - name: Symbolic link Ninja # Workaround for CMake not checking the right area for Ninja
+ run: ln -s /opt/homebrew/bin/ninja /usr/local/bin/ninja
98
99
- name: Configure
100
run: cmake --preset="${{ matrix.configurePreset }}" -DCMAKE_CXX_STANDARD="${{ matrix.cxx_version }}"
0 commit comments