We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93ecff commit a1a3793Copy full SHA for a1a3793
.github/docker-compose.yml
@@ -5,14 +5,14 @@ services:
5
dockerfile_inline: |
6
FROM spack/ubuntu-jammy:latest
7
VOLUME /configs
8
- ARG ompi_version
9
- ENV ompi_version=$$ompi_version
+ ARG OMPI_VERSION
+ ENV OMPI_VERSION=$${OMPI_VERSION}
10
CMD cp /configs/spack.yaml . && \
11
- spack -e . add openmpi@$${ompi_version} && \
+ spack -e . add openmpi@$${OMPI_VERSION} && \
12
spack -e . containerize >/configs/spack.Dockerfile && \
13
sed -i -e 's/spack install/spack external find --all --not-buildable \&\& spack install/;' /configs/spack.Dockerfile
14
args:
15
- ompi_version: main
+ OMPI_VERSION: main
16
no_cache: true
17
pull_policy: build
18
volumes:
0 commit comments