Skip to content
Snippets Groups Projects
Commit 7bc2853a authored by Fabian.Jakub's avatar Fabian.Jakub
Browse files

dbg

parent 03b9b657
No related branches found
No related tags found
1 merge request!4Switching to the advanced configuration method and fixing spack build.
......@@ -57,7 +57,6 @@ JOBS:
# EXECUTABLE: /my_python_env/python3
TRANSFER_PROJECT:
FILE: templates/common/transfer_project.sh
EXPORT: platforms/common/spack_utils.sh
PLATFORM: LOCAL
BUILD_ICON:
......@@ -65,7 +64,6 @@ JOBS:
DEPENDENCIES: TRANSFER_PROJECT
WALLCLOCK: 01:00
PROCESSORS: 16
EXPORT: platforms/common/spack_utils.sh
BUILD_PYTHON_ENVIRONMENT:
FILE: templates/common/build_python_environment.sh
......
# static settings when using spack
function spack_env() {
export SPACK_URL=%spack.url%
export SPACK_BRANCH=%spack.branch%
export SPACK_ROOT=%spack.root%
export SPACK_COMPILER=%spack.compiler%
export SPACK_DISABLE_LOCAL_CONFIG=%spack.disable_local_config%
if [ ! -z "%spack.user_cache_path%" ]; then
echo "setting SPACK_USER_CACHE_PATH=%spack.user_cache_path%"
export SPACK_USER_CACHE_PATH=%spack.user_cache_path%
fi
export SPACK_SETUP_ENV=$SPACK_ROOT/share/spack/setup-env.sh
}
function install_spack() {
function _install_spack() {
spack_env
if [ ! -f ${SPACK_ROOT} ]; then
......@@ -32,8 +22,17 @@ fi
}
function load_spack() {
export SPACK_ROOT=$1
export SPACK_URL=$2
export SPACK_BRANCH=$3
export SPACK_COMPILER=$4
export SPACK_DISABLE_LOCAL_CONFIG=$5
export SPACK_USER_CACHE_PATH=$6
if [ ! -z "$SPACK_USER_CACHE_PATH" ]; then
echo "setting SPACK_USER_CACHE_PATH=$SPACK_USER_CACHE_PATH"
fi
spack_env
if [ ! -f ${SPACK_ROOT} ]; then install_spack; fi
if [ ! -f ${SPACK_ROOT} ]; then _install_spack; fi
. ${SPACK_SETUP_ENV}
}
......@@ -12,7 +12,7 @@ fi
cd ${WORKDIR}
. ${WORKDIR}/proj/platforms/common/spack_utils.sh
load_spack
load_spack "%spack.root%" "%spack.url%" "%spack.branch%" "%spack.compiler%" "%spack.disable_local_config%" "%spack.user_cache_path%"
SPACK_BUILD_ICON=%icon.spack_cmd%
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