diff options
author | Todd Gamblin <gamblin2@llnl.gov> | 2022-05-13 03:09:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 04:09:39 -0600 |
commit | e0bed2d6a7d9df691df19cd4386654d944a78a51 (patch) | |
tree | cc316ab2354e8adeb6e4f88722027ca96e1d28de /share | |
parent | 745c191d7362b221875412e640e02db68dedc12d (diff) | |
download | spack-e0bed2d6a7d9df691df19cd4386654d944a78a51.tar.gz spack-e0bed2d6a7d9df691df19cd4386654d944a78a51.tar.bz2 spack-e0bed2d6a7d9df691df19cd4386654d944a78a51.tar.xz spack-e0bed2d6a7d9df691df19cd4386654d944a78a51.zip |
tutorial stack: allow deprecated versions (#30648)
For tutorial builds, we should continue to allow deprecated builds to be installed. We
can update them as needed when we update the tutorial, but we don't need to correct them
immediately on deprecation in CI.
- [x] add `deprecated:true` to tutorial `spack.yaml` config.
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/gitlab/cloud_pipelines/stacks/tutorial/spack.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/stacks/tutorial/spack.yaml b/share/spack/gitlab/cloud_pipelines/stacks/tutorial/spack.yaml index fbf641e973..aceb25a00d 100644 --- a/share/spack/gitlab/cloud_pipelines/stacks/tutorial/spack.yaml +++ b/share/spack/gitlab/cloud_pipelines/stacks/tutorial/spack.yaml @@ -9,6 +9,9 @@ spack: projections: all: '{architecture}/{compiler.name}-{compiler.version}/{name}-{version}-{hash}' + # allow deprecated versions in concretizations + deprecated: true + packages: all: target: [x86_64] |