Skip to content

Commit

Permalink
ci: put openblas-path in matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvandera committed Jun 10, 2024
1 parent 68e746b commit 2e5c46d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ jobs:
include:
- os: ubuntu-latest
macos-target: unused
openblas-path: unused
- os: macos-13
macos-target: 13.0
openblas-path: /usr/local/opt/openblas
- os: macos-14
macos-target: 14.0
openblas-path: /opt/homebrew/opt/openblas

steps:
- uses: actions/checkout@v4
Expand All @@ -32,7 +35,9 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ENVIRONMENT: MACOSX_DEPLOYMENT_TARGET=${{ matrix.macos-target }}
CIBW_ENVIRONMENT: |
MACOSX_DEPLOYMENT_TARGET=${{ matrix.macos-target }}
CMAKE_PREFIX_PATH=${{ matrix.openblas-path }}
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 2e5c46d

Please sign in to comment.