Skip to content

Commit

Permalink
Merge pull request #1012 from aurianer/print_spec_used
Browse files Browse the repository at this point in the history
Print the actual spack spec passed as argument in CI
  • Loading branch information
msimberg authored Feb 1, 2024
2 parents d877a50 + 13396a7 commit d23541a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitlab/docker/Dockerfile.spack_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM $BASE_IMAGE
ARG SPACK_SPEC
ENV spack_spec $SPACK_SPEC
# Install dependencies for this configuration
RUN spack env create pika_ci && \
RUN echo $spack_spec && \
spack env create pika_ci && \
spack -e pika_ci add $spack_spec && \
spack -e pika_ci install --fail-fast --only dependencies $spack_spec && \
spack -e pika_ci clean --all

0 comments on commit d23541a

Please sign in to comment.