-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rearrange tests to enable multiple SLURM and MPI versions
- Loading branch information
1 parent
d761702
commit edb63ac
Showing
3 changed files
with
171 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,35 @@ | ||
FROM ghcr.io/naturalhpc/cerulean-fake-slurm-23-11:latest | ||
# FROM naturalhpc/cerulean-fake-slurm-23-11:latest | ||
FROM ghcr.io/naturalhpc/cerulean-fake-slurm-base:latest | ||
# FROM naturalhpc/cerulean-fake-slurm-base:latest | ||
|
||
RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
. $(spack location -i lmod)/lmod/lmod/init/bash && \ | ||
spack install openmpi+legacylaunchers+pmi schedulers=slurm ^[email protected] ^slurm/dckfty | ||
spack install [email protected] +legacylaunchers +pmi schedulers=slurm \ | ||
^$(spack find --deps slurm@20-11 | grep pmix | tr -d ' ') \ | ||
^$(spack find --format "slurm/{hash}" slurm@20-11) | ||
|
||
RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
. $(spack location -i lmod)/lmod/lmod/init/bash && \ | ||
spack install [email protected] +legacylaunchers +pmi schedulers=slurm \ | ||
^$(spack find --deps slurm@21-08 | grep pmix | tr -d ' ') \ | ||
^$(spack find --format "slurm/{hash}" slurm@21-08) | ||
|
||
RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
. $(spack location -i lmod)/lmod/lmod/init/bash && \ | ||
spack install [email protected] +legacylaunchers +pmi schedulers=slurm \ | ||
^$(spack find --deps slurm@22-05 | grep pmix | tr -d ' ') \ | ||
^$(spack find --format "slurm/{hash}" slurm@22-05) | ||
|
||
RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
. $(spack location -i lmod)/lmod/lmod/init/bash && \ | ||
spack install [email protected] +legacylaunchers +pmi schedulers=slurm \ | ||
^$(spack find --deps slurm@23-02 | grep pmix | tr -d ' ') \ | ||
^$(spack find --format "slurm/{hash}" slurm@23-02) | ||
|
||
RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
. $(spack location -i lmod)/lmod/lmod/init/bash && \ | ||
spack install [email protected] +legacylaunchers +pmi schedulers=slurm \ | ||
^$(spack find --deps slurm@23-11 | grep pmix | tr -d ' ') \ | ||
^$(spack find --format "slurm/{hash}" slurm@23-11) | ||
|
||
# RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
# . $(spack location -i lmod)/lmod/lmod/init/bash && \ | ||
|