From 5ff12ca82147c9142a99f6049c5ac0f684aa55e9 Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Sat, 30 Dec 2023 04:15:43 +0100 Subject: [PATCH] ci: update to lapack 3.12 --- .github/workflows/windows.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 606f88e4c..0ffc20134 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -191,20 +191,20 @@ jobs: path: | ${{env.CCACHE_DIR}} ${{github.workspace}}/install - key: ${{matrix.msvc}}-lapack-3.11.0-${{matrix.build_type}} + key: ${{matrix.msvc}}-lapack-3.12.0-${{matrix.build_type}} - name: Download LAPACK if: steps.cache-lapack.outputs.cache-hit != 'true' shell: msys2 {0} run: | - wget https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.11.tar.gz - tar xvf v3.11.tar.gz + wget https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.12.tar.gz + tar xvf v3.12.tar.gz - name: Build LAPACK if: steps.cache-lapack.outputs.cache-hit != 'true' shell: msys2 {0} run: | - cmake -S lapack-3.11 -B build_lapack_${{matrix.build_type}}/ \ + cmake -S lapack-3.12 -B build_lapack_${{matrix.build_type}}/ \ -DBUILD_SHARED_LIBS=ON \ -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \ -DCMAKE_C_COMPILER_LAUNCHER:FILEPATH=$(which ccache) \