From 69526cbfeac073f2ad35bcd77b40218aeedcf12f Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Sun, 13 Nov 2022 21:47:19 +0100 Subject: [PATCH] ci: update to lapack 3.11 --- .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 69a13745a..b2830a705 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.10.1-${{matrix.build_type}} + key: ${{matrix.msvc}}-lapack-3.11.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.10.1.tar.gz - tar xvf v3.10.1.tar.gz + wget https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.11.tar.gz + tar xvf v3.11.tar.gz - name: Build LAPACK if: steps.cache-lapack.outputs.cache-hit != 'true' shell: msys2 {0} run: | - cmake -S lapack-3.10.1 -B build_lapack_${{matrix.build_type}}/ \ + cmake -S lapack-3.11 -B build_lapack_${{matrix.build_type}}/ \ -DBUILD_SHARED_LIBS=ON \ -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \ -DCMAKE_C_COMPILER_LAUNCHER:FILEPATH=$(which ccache) \