From 313e72567e18f1ec656051491e35ae1b13504900 Mon Sep 17 00:00:00 2001 From: "Jonathan M. Waldrop" Date: Mon, 17 Nov 2025 11:18:31 -0600 Subject: [PATCH] Update the CI container image --- nwx_build_environment/add_gauxc.dockerfile | 2 +- nwx_build_environment/add_libint.dockerfile | 2 +- nwx_build_environment/buildenv.sh | 6 +++--- nwx_build_environment/toolchains/nwx_base.cmake | 1 - 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/nwx_build_environment/add_gauxc.dockerfile b/nwx_build_environment/add_gauxc.dockerfile index e300419..f29dc34 100644 --- a/nwx_build_environment/add_gauxc.dockerfile +++ b/nwx_build_environment/add_gauxc.dockerfile @@ -14,7 +14,7 @@ FROM nwx_buildenv:latest -ARG VERSION=master +ARG VERSION=71008cffd5d13d5ee813fb13d14d8bf7b06b8f6e ARG COMPILER=gcc-11 # Install libfort ## diff --git a/nwx_build_environment/add_libint.dockerfile b/nwx_build_environment/add_libint.dockerfile index 0773d54..b61684f 100644 --- a/nwx_build_environment/add_libint.dockerfile +++ b/nwx_build_environment/add_libint.dockerfile @@ -27,4 +27,4 @@ RUN cd /tmp \ -DCMAKE_INSTALL_PREFIX=/nwx_dependencies/${COMPILER} \ -DCMAKE_TOOLCHAIN_FILE=/toolchains/${COMPILER}.cmake \ && cmake --build build --target install --parallel \ - && rm -rf /tmp/libint-${VERSION} + && rm -rf /tmp/libint-${VERSION}* diff --git a/nwx_build_environment/buildenv.sh b/nwx_build_environment/buildenv.sh index e85827f..0c6cf23 100755 --- a/nwx_build_environment/buildenv.sh +++ b/nwx_build_environment/buildenv.sh @@ -24,6 +24,6 @@ do done # TAMM, exachem are special cases for now -docker build -t nwx_buildenv -f add_tamm.dockerfile . -docker build -t nwx_buildenv -f add_exachem.dockerfile . -docker image prune -f +# docker build -t nwx_buildenv -f add_tamm.dockerfile . +# docker build -t nwx_buildenv -f add_exachem.dockerfile . +# docker image prune -f diff --git a/nwx_build_environment/toolchains/nwx_base.cmake b/nwx_build_environment/toolchains/nwx_base.cmake index 274980f..a6d2f0c 100644 --- a/nwx_build_environment/toolchains/nwx_base.cmake +++ b/nwx_build_environment/toolchains/nwx_base.cmake @@ -13,7 +13,6 @@ # limitations under the License. set(BUILD_TESTING ON) -set(CMAKE_CXX_STANDARD 17) set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) set(BUILD_SHARED_LIBS ON) set(CATCH_ENABLE_COVERAGE ON)