diff --git a/.github/workflows/cmakeMac.yml b/.github/workflows/cmakeMac.yml index d85b798..6c59a62 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,13 +44,13 @@ 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 - name: Build # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --target LBL_Test NASOQ_Test NASOQ_Step_Test LBLSOMOD_Test + run: cmake --build ${{github.workspace}}/build --target LBL_Test NASOQ_Test NASOQ_Step_Test LBLSOMOD_Test NASOQ_Catch2_Tests - name: run test 1 run: | @@ -58,3 +58,4 @@ jobs: ${{github.workspace}}/build/examples/NASOQ_Test ${{github.workspace}}/build/examples/NASOQ_Step_Test ${{github.workspace}}/build/examples/LBLSOMOD_Test + ${{github.workspace}}/build/tests/NASOQ_Catch2_Tests