From e42dfac373d3a8a548fa42619a8e10928a990c6f Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 29 Aug 2022 11:22:00 -0500 Subject: [PATCH 1/2] Update libmesh version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d408b9de5..ae59ec089 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,7 +53,7 @@ ENV DAGMC_REPO='https://github.com/svalinn/DAGMC' ENV DAGMC_INSTALL_DIR=$HOME/DAGMC/ # LIBMESH variables -ENV LIBMESH_TAG='v1.6.0' +ENV LIBMESH_TAG='v1.7.1' ENV LIBMESH_REPO='https://github.com/libMesh/libmesh' ENV LIBMESH_INSTALL_DIR=$HOME/LIBMESH From 3b5910057da5370dfbf2e53fdc31a28eecb391f3 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 29 Aug 2022 11:54:23 -0500 Subject: [PATCH 2/2] Update libmesh to 1.7.1 in gha-install-libmesh.sh for consistency --- tools/ci/gha-install-libmesh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/gha-install-libmesh.sh b/tools/ci/gha-install-libmesh.sh index d592616ed..cb808ae5b 100755 --- a/tools/ci/gha-install-libmesh.sh +++ b/tools/ci/gha-install-libmesh.sh @@ -5,7 +5,7 @@ set -ex # libMESH install pushd $HOME mkdir LIBMESH && cd LIBMESH -git clone https://github.com/libmesh/libmesh -b v1.7.0 --recurse-submodules +git clone https://github.com/libmesh/libmesh -b v1.7.1 --recurse-submodules mkdir build && cd build export METHODS="opt"