From 99ff511637933220c3dd734515bd0b21a77c8f1b Mon Sep 17 00:00:00 2001 From: Weiqun Zhang Date: Fri, 17 Jan 2025 17:22:39 -0800 Subject: [PATCH] Use PETSc 3.22.2 in CI --- .github/workflows/petsc.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/petsc.yml b/.github/workflows/petsc.yml index 89784a98310..eb7ba244159 100644 --- a/.github/workflows/petsc.yml +++ b/.github/workflows/petsc.yml @@ -11,7 +11,7 @@ jobs: uses: ./.github/workflows/check_changes.yml test-petsc-cpu-2d: - name: GCC 2D EB PETSc@3.18.1 + name: GCC 2D EB PETSc runs-on: ubuntu-latest needs: check_changes if: needs.check_changes.outputs.has_non_docs_changes == 'true' @@ -31,9 +31,9 @@ jobs: ccache-${{ github.workflow }}-${{ github.job }}-git- - name: Build PETSc run: | - wget -q https://github.com/petsc/petsc/archive/refs/tags/v3.18.1.tar.gz - tar xfz v3.18.1.tar.gz - cd petsc-3.18.1 + wget -q https://github.com/petsc/petsc/archive/refs/tags/v3.22.2.tar.gz + tar xfz v3.22.2.tar.gz + cd petsc-3.22.2 export PETSC_DIR=${PWD} ./configure --prefix=${PWD}/petsc make -j 4 @@ -48,7 +48,7 @@ jobs: export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt ccache -z - export AMREX_PETSC_HOME=${PWD}/petsc-3.18.1/petsc + export AMREX_PETSC_HOME=${PWD}/petsc-3.22.2/petsc cd Tests/LinearSolvers/CellEB make -j4 USE_MPI=TRUE USE_PETSC=TRUE DIM=2 TEST=TRUE \ CCACHE=ccache