Skip to content

Commit

Permalink
Install Ninja unconditionally on nix
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Apr 30, 2024
1 parent 51e53a4 commit 47e83bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-nix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ runs:
with:
key: ${{ inputs.cache-key-python }}
- name: install Ninja on Linux
if: matrix.generator == 'Ninja' && startsWith(matrix.platform, 'ubuntu')
if: startsWith(matrix.platform, 'ubuntu')
shell: bash
run: sudo apt install ninja-build
- name: install Ninja on OSX
if: matrix.generator == 'Ninja' && startsWith(matrix.platform, 'macos')
if: startsWith(matrix.platform, 'macos')
shell: bash
run: brew install ninja
- name: check environment
Expand Down

0 comments on commit 47e83bd

Please sign in to comment.