diff --git a/conf/common/build.yml b/conf/common/build.yml index b41438ace5033e30cf45adca4610f1b871fd70c4..8f4e190796cb6c6167930f15645765adecd8a57a 100644 --- a/conf/common/build.yml +++ b/conf/common/build.yml @@ -5,6 +5,7 @@ spack: init: "" # command to load spack environment, e.g. module load spack, use spack/setup-env.sh if empty url: https://github.com/spack/spack.git # url to download spack if necessary branch: develop # if downloaded, branch name to use + externals: "" # list of packages we try to find with spack external find compiler: "gcc@12.2.0" # desired compiler for spack root: "%HPCROOTDIR%/spack" # path to a spack install, will be downloaded to if not present user_cache_path: "%HPCROOTDIR%/spack_user_cache_path" # spack puts data here when bootstrapping, leave empty to use home folder diff --git a/platforms/common/spack_utils.sh b/platforms/common/spack_utils.sh index f336447b7192d00fe48b523f71820baf80fb0cff..17e3e234e9129b97f5336db019feec13d8ce37b5 100644 --- a/platforms/common/spack_utils.sh +++ b/platforms/common/spack_utils.sh @@ -6,6 +6,12 @@ function _install_spack() { _init_spack "$SPACK_INIT_CMD" "$SPACK_ROOT" + if [ ! -z "${SPACK_EXTERNALS}" ] ; then + for ext in ${SPACK_EXTERNALS}; do + spack external find $ext + done + fi + if [[ $(spack compiler info ${SPACK_COMPILER}) ]]; then echo "Found Compiler $(spack compiler info ${SPACK_COMPILER})" else @@ -32,10 +38,11 @@ function load_spack() { export SPACK_ROOT=$2 # i.e.: spack export SPACK_URL=$3 # i.e.: https://github.com/spack/spack.git export SPACK_BRANCH=$4 # i.e.: develop - export SPACK_COMPILER=$5 # i.e.: gcc@12.2.0 - export SPACK_DISABLE_LOCAL_CONFIG=$6 # i.e.: true - export SPACK_USER_CACHE_PATH=$7 # i.e.: ${SPACK_ROOT}/spack_user_cache_path - export SPACK_USER_CONFIG_PATH=$8 # i.e.: ${SPACK_ROOT}/spack_user_config_path + export SPACK_EXTERNALS=$5 # i.e.: slurm + export SPACK_COMPILER=$6 # i.e.: gcc@12.2.0 + export SPACK_DISABLE_LOCAL_CONFIG=$7 # i.e.: true + export SPACK_USER_CACHE_PATH=$8 # i.e.: ${SPACK_ROOT}/spack_user_cache_path + export SPACK_USER_CONFIG_PATH=$9 # i.e.: ${SPACK_ROOT}/spack_user_config_path if [ "$SPACK_DISABLE_LOCAL_CONFIG" != "True" ]; then unset SPACK_DISABLE_LOCAL_CONFIG @@ -45,6 +52,7 @@ function load_spack() { echo "SPACK_ROOT = $SPACK_ROOT" echo "SPACK_URL = $SPACK_URL" echo "SPACK_BRANCH = $SPACK_BRANCH" + echo "SPACK_EXTERNALS = $SPACK_EXTERNALS" echo "SPACK_COMPILER = $SPACK_COMPILER" echo "SPACK_DISABLE_LOCAL_CONFIG = ${SPACK_DISABLE_LOCAL_CONFIG:-False}" echo "SPACK_USER_CACHE_PATH = $SPACK_USER_CACHE_PATH" diff --git a/templates/common/build_icon.sh b/templates/common/build_icon.sh index 51dd449f6e3f124931a9faa427bcea04155dc0bb..62729b38e239b7bdbfd0c57ed776eaa96add330e 100644 --- a/templates/common/build_icon.sh +++ b/templates/common/build_icon.sh @@ -14,7 +14,7 @@ cd ${WORKDIR} || exit . ${WORKDIR}/proj/platforms/common/spack_utils.sh -load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" +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 diff --git a/templates/common/build_python_environment.sh b/templates/common/build_python_environment.sh index 3220707802ca2229a9901cc2c8d302c2287a7e0f..102f9008c686c63814091696edbcf8f409323fee 100644 --- a/templates/common/build_python_environment.sh +++ b/templates/common/build_python_environment.sh @@ -11,7 +11,7 @@ PYTHON_VERSION=%PYTHON_ENVIRONMENT.PYTHON_VERSION% cd ${WORKDIR} . ${WORKDIR}/proj/platforms/common/spack_utils.sh -load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" +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%" # Use spack to get a recent enough version of python3 diff --git a/templates/common/run_icon.sh b/templates/common/run_icon.sh index a1ceaf1b74c4279d8a5b87d8662ac0b82643b315..5af49ea73b2fffcfd03af3c6ea359568504f6059 100644 --- a/templates/common/run_icon.sh +++ b/templates/common/run_icon.sh @@ -13,7 +13,7 @@ cd ${RUNDIR} # Activate spack . ${WORKDIR}/proj/platforms/common/spack_utils.sh -load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" +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%" # Load icon module spack load icon-nwp@%ICON_VERSION% diff --git a/templates/real-from-dwd-ana/prepare_experiment.sh b/templates/real-from-dwd-ana/prepare_experiment.sh index 677cc057226382c8bf54c896be1ad0803906882f..c35bc45dc512f3554d5d052a0741f1e54fcd2b18 100644 --- a/templates/real-from-dwd-ana/prepare_experiment.sh +++ b/templates/real-from-dwd-ana/prepare_experiment.sh @@ -9,7 +9,7 @@ EXTERNAL_PARAMETERS_FILE=%simulation.external_parameters_filename% # Activate spack . ${WORKDIR}/proj/platforms/common/spack_utils.sh -load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" +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%" # Load icon module needed to retrieve some data spack load icon-nwp@%ICON_VERSION% diff --git a/templates/real-from-ideal/prepare_experiment.sh b/templates/real-from-ideal/prepare_experiment.sh index d7f3791f9b976ae250fce203c14f7986e9ea923a..70dd86ebb45eb5cfd05c5a7d5550e10f93b3ff25 100644 --- a/templates/real-from-ideal/prepare_experiment.sh +++ b/templates/real-from-ideal/prepare_experiment.sh @@ -7,7 +7,7 @@ RADIATION_GRID_FILE=%simulation.radiation_grid_filename% # Activate spack . ${WORKDIR}/proj/platforms/common/spack_utils.sh -load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" +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%" # Load icon module needed to retrieve some data spack load icon-nwp@%ICON_VERSION% diff --git a/templates/real-from-ideal/run_ideal.sh b/templates/real-from-ideal/run_ideal.sh index b808cae786cb44fddde5f06343327194d933aac9..9bf0a58c19619d16127cc20632bc5963e9db3c9f 100644 --- a/templates/real-from-ideal/run_ideal.sh +++ b/templates/real-from-ideal/run_ideal.sh @@ -12,7 +12,7 @@ cd ${RUNDIR} # Activate spack . ${WORKDIR}/proj/platforms/common/spack_utils.sh -load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%" +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%" # Load icon module spack load icon-nwp@%ICON_VERSION%