Skip to content
Snippets Groups Projects
Unverified Commit 37d7b5b1 authored by Glenn Johnson's avatar Glenn Johnson Committed by GitHub
Browse files

Activate environment in container file (#17316)

* Activate environment in container file

This PR will ensure that the container recipes will build the spack
environment by first activating the environment.

* Deactivate environment before environment collection

For Singularity, the environment must be deactivated before running the
command to collect the environment variables. This is because the
environment collection uses `spack env activate`.
parent cec55577
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ RUN mkdir {{ paths.environment }} \ ...@@ -7,7 +7,7 @@ RUN mkdir {{ paths.environment }} \
{{ manifest }} > {{ paths.environment }}/spack.yaml {{ manifest }} > {{ paths.environment }}/spack.yaml
# Install the software, remove unecessary deps # Install the software, remove unecessary deps
RUN cd {{ paths.environment }} && spack install && spack gc -y RUN cd {{ paths.environment }} && spack env activate . && spack install && spack gc -y
{% if strip %} {% if strip %}
# Strip all the binaries # Strip all the binaries
......
...@@ -11,8 +11,10 @@ EOF ...@@ -11,8 +11,10 @@ EOF
# Install all the required software # Install all the required software
. /opt/spack/share/spack/setup-env.sh . /opt/spack/share/spack/setup-env.sh
spack env activate .
spack install spack install
spack gc -y spack gc -y
spack env deactivate
spack env activate --sh -d . >> {{ paths.environment }}/environment_modifications.sh spack env activate --sh -d . >> {{ paths.environment }}/environment_modifications.sh
{% if strip %} {% if strip %}
...@@ -87,4 +89,4 @@ Stage: final ...@@ -87,4 +89,4 @@ Stage: final
{% for label, value in labels.items() %} {% for label, value in labels.items() %}
{{ label }} {{ value }} {{ label }} {{ value }}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
\ No newline at end of file
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