Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoicon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
w2w
autoicon
Commits
e204651c
Commit
e204651c
authored
2 years ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/build_icon.sh
+27
-6
27 additions, 6 deletions
templates/build_icon.sh
with
27 additions
and
6 deletions
templates/build_icon.sh
+
27
−
6
View file @
e204651c
# 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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment