Skip to content

Commit

Permalink
ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
mradugin authored Jul 13, 2024
1 parent dad5d31 commit 7d8140a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ jobs:
verbose: 2
variant: ccache

- name: Install ninja (ubuntu)
if: matrix.os == 'ubuntu-latest' && matrix.generator = 'Ninja'
run: |
apt update
apt -y install ninja
- name: Install ninja (macos)
if: matrix.os == 'macos-latest' && matrix.generator = 'Ninja'
run: |
brew install ninja
- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
Expand Down

0 comments on commit 7d8140a

Please sign in to comment.