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

Improve the recipe build_icon.sh for clarity and to avoid re-installation of existing things.

parent 91d28858
No related branches found
No related tags found
No related merge requests found
# Get workdir from autosubmit # Get some variables provided by autosubmit.
# TODO: What do we do to ensure that these variables are defined in the proj file?
WORKDIR=%HPCROOTDIR% WORKDIR=%HPCROOTDIR%
ICON_VERSION=%ICON_VERSION%
SPACK_URL=%spack.url%
SPACK_BRANCH=%spack.branch%
# If folder does not exist create it
# If the workdir directory does not exist create it
if [ ! -d ${WORKDIR} ] ; then if [ ! -d ${WORKDIR} ] ; then
mkdir -p ${WORKDIR} mkdir -p ${WORKDIR}
fi fi
# Go to working directory # Go to the working directory
cd ${WORKDIR} cd ${WORKDIR}
git clone %spack.url% -b %spack.branch% # Check if experiment's spack installation already exists, if it doesn't, clone it.
SPACK_ENV=spack/share/spack/setup-env.sh
if [ ! -f ${SPACK_ENV}] ; then
git clone ${SPACK_URL} -b ${SPACK_BRANCH}
#TODO: Would be good to enable the re-utilization of existing spack packages (via packages.yaml or upstreams.yaml)
fi
source spack/share/spack/setup-env.sh # Setup the environment
source ${SPACK_ENV}
spack install icon-nwp@%icon_version% # If the model is not installed, install it.
if [ $( spack find icon-nwp@${ICON_VERSION} &> /dev/null ; echo $? ) -ne 0 ]; then
spack install icon-nwp@${ICON_VERSION}
fi
if [ $( spack find icon-nwp@${ICON_VERSION} &> /dev/null ; echo $? ) -ne 0 ]; then
echo "Installing icon-nwp@${ICON_VERSION}."
spack install icon-nwp@${ICON_VERSION}
else
echo "icon-nwp@${version} already installed!"
fi
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