Skip to content

Commit

Permalink
Update scipy_on_py3_13.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed May 13, 2024
1 parent dd7ce42 commit 5e4db50
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/scipy_on_py3_13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ jobs:
sudo apt-get install --yes libopenblas-dev
- if: runner.os == 'macOS'
env:
LDFLAGS: "-L$HOMEBREW_PREFIX/opt/openblas/lib"
CPPFLAGS: "-I$HOMEBREW_PREFIX/opt/openblas/include"
PKG_CONFIG_PATH: "$HOMEBREW_PREFIX/opt/openblas/lib/pkgconfig"
LDFLAGS: "-L${{ env.HOMEBREW_PREFIX }}/opt/openblas/lib"
CPPFLAGS: "-I${{ env.HOMEBREW_PREFIX }}/opt/openblas/include"
PKG_CONFIG_PATH: "${{ env.HOMEBREW_PREFIX }}/opt/openblas/lib/pkgconfig"
run: |
echo $PATH
echo $HOMEBREW_PREFIX
echo $LDFLAGS
echo $CPPFLAGS
echo $PKG_CONFIG_PATH
echo ${{ env.PATH }}
echo ${{ env.HOMEBREW_PREFIX }}
brew install openblas
brew install gfortran
gfortran --version || true
Expand Down

0 comments on commit 5e4db50

Please sign in to comment.