Skip to content

Commit

Permalink
Checking out openblas in wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Sep 26, 2023
1 parent fa7b985 commit e0b6d71
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ jobs:
with:
submodules: true

- name: Install OpenBLAS
if: matrix.os == 'windows-latest'
run: |
# Download OpenBLAS
curl -L -o openblas.zip https://github.com/xianyi/OpenBLAS/releases/download/v0.3.18/OpenBLAS-v0.3.18-Win64-int32.zip
# Extract OpenBLAS
powershell -Command "Expand-Archive -Path openblas.zip -DestinationPath openblas"
# Add OpenBLAS to PATH
$env:PATH += ';C:\path\to\openblas\bin'
- name: Install OpenBlas Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install libopenblas-dev
- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: universal2
Expand Down

0 comments on commit e0b6d71

Please sign in to comment.