From b2ff93282c2f7154c804634e4f5ccd9cef5159b9 Mon Sep 17 00:00:00 2001 From: Da Ma Date: Fri, 1 Nov 2024 18:50:43 -0400 Subject: [PATCH] Fix macOS runner to macos-latest and configure cmake --- .github/workflows/cmakeMac.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmakeMac.yml b/.github/workflows/cmakeMac.yml index d85b798..2e85aa1 100644 --- a/.github/workflows/cmakeMac.yml +++ b/.github/workflows/cmakeMac.yml @@ -18,7 +18,7 @@ jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on - runs-on: macos-11 + runs-on: macos-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -44,7 +44,7 @@ jobs: run: | export LDFLAGS="-L/usr/local/opt/openblas/lib" export CPPFLAGS="-I/usr/local/opt/openblas/include" - cmake -B ${{github.workspace}}/build -DNASOQ_BLAS_BACKEND=OpenBLAS -DCMAKE_BUILD_TYPE=Release + cmake -B ${{github.workspace}}/build -DNASOQ_BLAS_BACKEND=OpenBLAS -DNASOQ_USE_CLAPACK=ON -DCMAKE_BUILD_TYPE=Release