Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix indentation in Easystack examples #855

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/Easystack-files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ For example:

easyconfigs:
- PyTorch-1.12.0-foss-2022a-CUDA-11.7.0.eb:
options:
from-pr: 15924
debug: True
options:
from-pr: 15924
debug: True
- Hypre-2.25.0-foss-2022a.eb:
- OpenFOAM-v2206-foss-2022a.eb:
options:
installpath: /my/custom/installpath
options:
installpath: /my/custom/installpath

.. note::
You need to take care with some values in YAML, especially integers, booleans, etc.
Expand Down Expand Up @@ -108,8 +108,8 @@ Specifying short options in an easystack file is allowed, for example:

easyconfigs:
- OpenFOAM-v2206-foss-2022a.eb:
options:
D: True
options:
D: True

This is not recommended however, as short options are more difficult to interpret by humans.

Expand All @@ -127,9 +127,9 @@ These apply to *all* items in the easystack file. For example, if you have an ea

easyconfigs:
- PyTorch-1.12.0-foss-2022a-CUDA-11.7.0.eb:
options:
from-pr: 15924
debug: True
options:
from-pr: 15924
debug: True
- OpenFOAM-v2206-foss-2022a.eb:

and you run with
Expand Down Expand Up @@ -180,8 +180,8 @@ In the future, we are planning to support additional also global options specifi
robot: True

easyconfigs:
- PyTorch-1.12.0-foss-2022a-CUDA-11.7.0.eb
- OpenFOAM-v2206-foss-2022a.eb
- PyTorch-1.12.0-foss-2022a-CUDA-11.7.0.eb
- OpenFOAM-v2206-foss-2022a.eb

would installed both ``PyTorch-1.12.0-foss-2022a-CUDA-11.7.0.eb`` and ``OpenFOAM-v2206-foss-2022a.eb`` using ``--robot``
(see `issue #4105 <https://github.com/easybuilders/easybuild-framework/issues/4105>`_).
Expand Down