diff --git a/platforms/common/spack_utils.sh b/platforms/common/spack_utils.sh index 17e3e234e9129b97f5336db019feec13d8ce37b5..02ec602587a49823bce10091fbd4933741a37c02 100644 --- a/platforms/common/spack_utils.sh +++ b/platforms/common/spack_utils.sh @@ -16,7 +16,7 @@ function _install_spack() { echo "Found Compiler $(spack compiler info ${SPACK_COMPILER})" else echo "could not find compiler, will now try to install it... this may take a while" - spack install ${SPACK_COMPILER} + spack install --reuse ${SPACK_COMPILER} spack compiler add $(spack location --install-dir $SPACK_COMPILER) fi } diff --git a/templates/common/build_icon.sh b/templates/common/build_icon.sh index 62729b38e239b7bdbfd0c57ed776eaa96add330e..2f53a0ada2a5b07207e15d977e6a7135f722d30b 100644 --- a/templates/common/build_icon.sh +++ b/templates/common/build_icon.sh @@ -17,7 +17,7 @@ cd ${WORKDIR} || exit load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.externals%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" if [ ! $(rpm -qa | grep bzip2) ]; then - spack install bzip2 + spack install --reuse bzip2 spack load --first bzip2 fi @@ -32,7 +32,7 @@ if [ ! -z "$SPACK_BUILD_ICON" ]; then spack repo add ${WORKDIR}/proj/spack_repo fi spack spec $SPACK_BUILD_ICON - spack install $SPACK_BUILD_ICON + spack install --reuse $SPACK_BUILD_ICON #TODO: had some problems with spack load when more than one version is available, adding --first to overcome that # although in principle we should not install the model if its already installed. spack load --first "icon-nwp@${ICON_VERSION}%${COMPILER}"