From 9f3a18b795d5c736817b7a9c1aacccfde3fa1d92 Mon Sep 17 00:00:00 2001 From: "Scott C. Livingston" Date: Tue, 3 Sep 2024 22:28:39 -0700 Subject: [PATCH 1/2] CI: update macos gfortran version --- .github/workflows/slycot-build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/slycot-build-and-test.yml b/.github/workflows/slycot-build-and-test.yml index 60b978c6..93d9651a 100644 --- a/.github/workflows/slycot-build-and-test.yml +++ b/.github/workflows/slycot-build-and-test.yml @@ -113,7 +113,7 @@ jobs: echo "bla_vendor option ${{ matrix.bla_vendor }} not supported" exit 1 ;; esac - echo "FC=gfortran-11" >> $GITHUB_ENV + echo "FC=gfortran-14" >> $GITHUB_ENV - name: Build wheel env: BLA_VENDOR: ${{ matrix.bla_vendor }} From 1930e335776dc4c1a2822e079f25217c3c86e234 Mon Sep 17 00:00:00 2001 From: "Scott C. Livingston" Date: Tue, 3 Sep 2024 22:43:29 -0700 Subject: [PATCH 2/2] CI: update OpenBLAS path for macos, build-pip --- .github/workflows/slycot-build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/slycot-build-and-test.yml b/.github/workflows/slycot-build-and-test.yml index 93d9651a..b2ac6961 100644 --- a/.github/workflows/slycot-build-and-test.yml +++ b/.github/workflows/slycot-build-and-test.yml @@ -106,8 +106,8 @@ jobs: unset | Generic | Apple ) ;; # Found in system OpenBLAS ) brew install openblas - echo "BLAS_ROOT=/usr/local/opt/openblas/" >> $GITHUB_ENV - echo "LAPACK_ROOT=/usr/local/opt/openblas/" >> $GITHUB_ENV + echo "LDFLAGS=-L/opt/homebrew/opt/openblas/lib" >> $GITHUB_ENV + echo "CPPFLAGS=-I/opt/homebrew/opt/openblas/include" >> $GITHUB_ENV ;; *) echo "bla_vendor option ${{ matrix.bla_vendor }} not supported"