Skip to content

Commit

Permalink
CI: MR 20632 revisions
Browse files Browse the repository at this point in the history
* attempt to fix `M1 test - openblas` MacOS ARM CI job
based on some `gfortran` shims applied to a similar
job on `main`
  • Loading branch information
tylerjereddy committed May 18, 2024
1 parent 8b9a6d6 commit 023b0fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/macos_meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,14 @@ jobs:
git submodule update --init
# for some reason gfortran is not on the path
GFORTRAN_LOC=$(brew --prefix gfortran)/bin/gfortran
GFORTRAN_LOC=$(which gfortran-13)
ln -s $GFORTRAN_LOC gfortran
export PATH=$PWD:$PATH
# make sure we have openblas
bash tools/wheels/cibw_before_build_macos.sh $PWD
export DYLD_LIBRARY_PATH=/usr/local/gfortran/lib:/opt/arm64-builds/lib
GFORTRAN_LIB=$(dirname `gfortran --print-file-name libgfortran.dylib`)
export DYLD_LIBRARY_PATH=$GFORTRAN_LIB
export PKG_CONFIG_PATH=/opt/arm64-builds/lib/pkgconfig
pip install click doit pydevtool rich_click meson cython pythran pybind11 ninja numpy
Expand Down

0 comments on commit 023b0fb

Please sign in to comment.