Skip to content
Snippets Groups Projects
Commit 691003be authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Add user_config_path.

parent 82eeadd1
No related branches found
No related tags found
1 merge request!4Switching to the advanced configuration method and fixing spack build.
...@@ -8,6 +8,7 @@ spack: ...@@ -8,6 +8,7 @@ spack:
compiler: gcc@12.2.0 # desired compiler for spack compiler: gcc@12.2.0 # desired compiler for spack
root: "%HPCROOTDIR%/spack" # path to a spack install, will be downloaded to if not present 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 user_cache_path: "%HPCROOTDIR%/spack_user_cache_path" # spack puts data here when bootstrapping, leave empty to use home folder
user_config_path: "%HPCROOTDIR%/spack_user_config_path" # spack puts data here when bootstrapping, leave empty to use home folder
disable_local_config: true # if false, spack install into home folder disable_local_config: true # if false, spack install into home folder
build_cmd: "icon-nwp@%ICON.VERSION%% %SPACK.COMPILER% ^openmpi+pmi+legacylaunchers schedulers=slurm fabrics=ucx ucx+dc+dm+ib_hw_tm+mlx5_dv+rc+rdmacm+thread_multiple+ud+verbs ^gettext@0.20.2 " build_cmd: "icon-nwp@%ICON.VERSION%% %SPACK.COMPILER% ^openmpi+pmi+legacylaunchers schedulers=slurm fabrics=ucx ucx+dc+dm+ib_hw_tm+mlx5_dv+rc+rdmacm+thread_multiple+ud+verbs ^gettext@0.20.2 "
......
...@@ -29,12 +29,13 @@ function _init_spack() { ...@@ -29,12 +29,13 @@ function _init_spack() {
function load_spack() { function load_spack() {
export SPACK_INIT_CMD=$1 export SPACK_INIT_CMD=$1
export SPACK_ROOT=$2 # i.e.: spack export SPACK_ROOT=$2 # i.e.: spack
export SPACK_URL=$3 # i.e.: https://github.com/spack/spack.git export SPACK_URL=$3 # i.e.: https://github.com/spack/spack.git
export SPACK_BRANCH=$4 # i.e.: develop export SPACK_BRANCH=$4 # i.e.: develop
export SPACK_COMPILER=$5 # i.e.: gcc@12.2.0 export SPACK_COMPILER=$5 # i.e.: gcc@12.2.0
export SPACK_DISABLE_LOCAL_CONFIG=$6 # i.e.: true 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_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
echo "SPACK_INIT_CMD = $SPACK_INIT_CMD" echo "SPACK_INIT_CMD = $SPACK_INIT_CMD"
echo "SPACK_ROOT = $SPACK_ROOT" echo "SPACK_ROOT = $SPACK_ROOT"
...@@ -43,11 +44,16 @@ function load_spack() { ...@@ -43,11 +44,16 @@ function load_spack() {
echo "SPACK_COMPILER = $SPACK_COMPILER" echo "SPACK_COMPILER = $SPACK_COMPILER"
echo "SPACK_DISABLE_LOCAL_CONFIG = $SPACK_DISABLE_LOCAL_CONFIG" echo "SPACK_DISABLE_LOCAL_CONFIG = $SPACK_DISABLE_LOCAL_CONFIG"
echo "SPACK_USER_CACHE_PATH = $SPACK_USER_CACHE_PATH" echo "SPACK_USER_CACHE_PATH = $SPACK_USER_CACHE_PATH"
echo "SPACK_USER_CONFIG_PATH = $SPACK_USER_CONFIG_PATH"
if [ -z "$SPACK_USER_CACHE_PATH" ]; then if [ -z "$SPACK_USER_CACHE_PATH" ]; then
unset SPACK_USER_CACHE_PATH unset SPACK_USER_CACHE_PATH
fi fi
if [ -z "$SPACK_USER_CONFIG_PATH" ]; then
unset SPACK_USER_CONFIG_PATH
fi
if [ ! -e ${SPACK_ROOT} ] && [ ! -z "${SPACK_ROOT}" ]; then _install_spack; fi if [ ! -e ${SPACK_ROOT} ] && [ ! -z "${SPACK_ROOT}" ]; then _install_spack; fi
_init_spack "$SPACK_INIT_CMD" "$SPACK_ROOT" _init_spack "$SPACK_INIT_CMD" "$SPACK_ROOT"
......
...@@ -11,8 +11,13 @@ fi ...@@ -11,8 +11,13 @@ fi
# Go to the working directory # Go to the working directory
cd ${WORKDIR} cd ${WORKDIR}
export SPACK_USER_CONFIG_PATH=${WORKDIR}/
. ${WORKDIR}/proj/platforms/common/spack_utils.sh . ${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%" load_spack "%spack.init%" "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%" "%spack.user_config_path%"
SPACK_BUILD_ICON="%spack.build_cmd%" SPACK_BUILD_ICON="%spack.build_cmd%"
if [ ! -z "$SPACK_BUILD_ICON" ]; then if [ ! -z "$SPACK_BUILD_ICON" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment