Skip to content

Commit

Permalink
Specify correct Python binary on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillof committed Aug 30, 2024
1 parent 632cdac commit b42060a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,18 @@ jobs:
pip install nihtest
- name: configure (Unix)
if: ${{ runner.os != 'Windows' }}
if: ${{ runner.os == 'Linux' }}
working-directory: ${{runner.workspace}}/build
run: |
cmake ${{github.workspace}}
- name: configure (macOS)
if: ${{ runner.os == 'macOS' }}
working-directory: ${{runner.workspace}}/build
run: |
cmake ${{github.workspace}}
env:
PYTHONBIN: /usr/bin/python3

- name: build
working-directory: ${{runner.workspace}}/build
Expand Down

0 comments on commit b42060a

Please sign in to comment.