From e0f395da56a4a861c2baf5267aab86435db220d4 Mon Sep 17 00:00:00 2001 From: Jakub Both Date: Wed, 28 Aug 2024 22:03:08 +0200 Subject: [PATCH] MAINT: Try to configure petsc with hypre --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22c82ab8..f8daf351 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,12 @@ jobs: echo "PETSC_DIR=/usr/local/petsc" >> $GITHUB_ENV echo "PETSC_ARCH=arch-linux-c-opt" >> $GITHUB_ENV + - name: Configure and install Hypre + run: | + # Run ./configure --download-hypre in petsc folder + cd /usr/local/petsc + ./configure --download-hypre + # Installation of petsc in parallel # - name: Install dependencies