diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-05-27 14:02:37 +0200 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2020-05-27 10:21:14 -0700 |
commit | 187cb51b4970f4b2111d637c44b1f985271392ce (patch) | |
tree | 3ccc7705bf34582e87cec815a8fa5d866b976cd7 /lib | |
parent | 6ddc077e084adecdaf846a50124d63a80d1bd362 (diff) | |
download | spack-187cb51b4970f4b2111d637c44b1f985271392ce.tar.gz spack-187cb51b4970f4b2111d637c44b1f985271392ce.tar.bz2 spack-187cb51b4970f4b2111d637c44b1f985271392ce.tar.xz spack-187cb51b4970f4b2111d637c44b1f985271392ce.zip |
spack containerize: allow 0.14.1 and 0.14.2 tags
fixes #16727
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/container/images.json | 16 | ||||
-rw-r--r-- | lib/spack/spack/schema/container.py | 5 |
2 files changed, 16 insertions, 5 deletions
diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json index ecd911815d..c7226c4f59 100644 --- a/lib/spack/spack/container/images.json +++ b/lib/spack/spack/container/images.json @@ -8,7 +8,9 @@ "build_tags": { "develop": "latest", "0.14": "0.14", - "0.14.0": "0.14.0" + "0.14.0": "0.14.0", + "0.14.1": "0.14.1", + "0.14.2": "0.14.2" } }, "ubuntu:16.04": { @@ -20,7 +22,9 @@ "build_tags": { "develop": "latest", "0.14": "0.14", - "0.14.0": "0.14.0" + "0.14.0": "0.14.0", + "0.14.1": "0.14.1", + "0.14.2": "0.14.2" } }, "centos:7": { @@ -32,7 +36,9 @@ "build_tags": { "develop": "latest", "0.14": "0.14", - "0.14.0": "0.14.0" + "0.14.0": "0.14.0", + "0.14.1": "0.14.1", + "0.14.2": "0.14.2" } }, "centos:6": { @@ -44,7 +50,9 @@ "build_tags": { "develop": "latest", "0.14": "0.14", - "0.14.0": "0.14.0" + "0.14.0": "0.14.0", + "0.14.1": "0.14.1", + "0.14.2": "0.14.2" } } }
\ No newline at end of file diff --git a/lib/spack/spack/schema/container.py b/lib/spack/spack/schema/container.py index cb1ed8d63a..fcfc398c83 100644 --- a/lib/spack/spack/schema/container.py +++ b/lib/spack/spack/schema/container.py @@ -29,7 +29,10 @@ container_schema = { }, 'spack': { 'type': 'string', - 'enum': ['develop', '0.14', '0.14.0'] + 'enum': [ + 'develop', + '0.14', '0.14.0', '0.14.1', '0.14.2' + ] } }, 'required': ['image', 'spack'] |