From e0b6d71b988937fca729579132fe5d3218920682 Mon Sep 17 00:00:00 2001 From: "George G. Vega Yon" Date: Tue, 26 Sep 2023 12:12:31 -0600 Subject: [PATCH] Checking out openblas in wheels --- .github/workflows/wheels.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 7b165a9..fce3f9c 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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/cibuildwheel@v2.15 env: CIBW_ARCHS_MACOS: universal2