From 3b580b09567444a041c6a277124d7c55ccb4cf4b Mon Sep 17 00:00:00 2001 From: Philipp Pracht Date: Thu, 16 Jan 2025 13:13:08 +0100 Subject: [PATCH 1/2] test libopenblas download --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37007b8..1e1aa82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,7 +103,7 @@ jobs: --slave /usr/bin/gcov gcov /usr/bin/gcov-${{ env.GCC_V }} - name: Install libopenblas (Linux GNU build only) - if: ${{ matrix.compiler == 'gnu' && matrix.build-type == 'debugoptimized' }} + if: ${{ matrix.compiler == 'gnu' }} #&& matrix.build-type == 'debugoptimized' }} run: sudo apt-get update && sudo apt-get install -y libopenblas-dev - name: Prepare for cache restore From b49831893c22ff947372acd969b6ca240af9a32e Mon Sep 17 00:00:00 2001 From: Philipp Pracht Date: Thu, 16 Jan 2025 13:19:57 +0100 Subject: [PATCH 2/2] Change GH workflow to install libopenblas for GNU builds --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e1aa82..252939a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,7 +103,7 @@ jobs: --slave /usr/bin/gcov gcov /usr/bin/gcov-${{ env.GCC_V }} - name: Install libopenblas (Linux GNU build only) - if: ${{ matrix.compiler == 'gnu' }} #&& matrix.build-type == 'debugoptimized' }} + if: ${{ matrix.compiler == 'gnu' && contains(matrix.os, 'ubuntu') }} run: sudo apt-get update && sudo apt-get install -y libopenblas-dev - name: Prepare for cache restore