Skip to content

Commit

Permalink
Add a workflow step to install ninja on macOS before cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
nightlark committed Jan 31, 2024
1 parent b716b33 commit a8927c3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ jobs:
mingw-w64-${{matrix.mingw_env}}-toolchain
if: runner.os == 'Windows'

- name: Install ninja (macOS)
run: which ninja || brew install ninja
if: runner.os == 'macOS'

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
env:
Expand Down

0 comments on commit a8927c3

Please sign in to comment.