Skip to content

Commit

Permalink
ENH: Update build-matrix.yml to install ninja on Linux and macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Brunner246 committed Jun 2, 2024
1 parent 2c12b4f commit 5fe9af1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ jobs:
run: |
if [[ "${{ runner.os }}" == "Windows" ]]; then
choco install ninja
else
elif [[ "${{ runner.os }}" == "Linux" ]]; then
sudo apt-get install -y ninja-build
elif [[ "${{ runner.os }}" == "macOS" ]]; then
brew install ninja
fi
- name: vcpkg installation
Expand Down

0 comments on commit 5fe9af1

Please sign in to comment.