containerize: allow 0.14.1-0.14.3 versions (#16824)

This commit is contained in:
Massimiliano Culpo 2020-05-27 14:07:50 +02:00 committed by Gregory Becker
parent e2f5f668a9
commit a69674c73e
2 changed files with 24 additions and 5 deletions

View File

@ -8,7 +8,10 @@
"build_tags": { "build_tags": {
"develop": "latest", "develop": "latest",
"0.14": "0.14", "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",
"0.14.3": "0.14.3"
} }
}, },
"ubuntu:16.04": { "ubuntu:16.04": {
@ -20,7 +23,10 @@
"build_tags": { "build_tags": {
"develop": "latest", "develop": "latest",
"0.14": "0.14", "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",
"0.14.3": "0.14.3"
} }
}, },
"centos:7": { "centos:7": {
@ -32,7 +38,10 @@
"build_tags": { "build_tags": {
"develop": "latest", "develop": "latest",
"0.14": "0.14", "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",
"0.14.3": "0.14.3"
} }
}, },
"centos:6": { "centos:6": {
@ -44,7 +53,14 @@
"build_tags": { "build_tags": {
"develop": "latest", "develop": "latest",
"0.14": "0.14", "0.14": "0.14",
<<<<<<< HEAD
"0.14.0": "0.14.0" "0.14.0": "0.14.0"
=======
"0.14.0": "0.14.0",
"0.14.1": "0.14.1",
"0.14.2": "0.14.2",
"0.14.3": "0.14.3"
>>>>>>> 8f208b17e2... spack containerize: allow 0.14.3 tag for next release
} }
} }
} }

View File

@ -29,7 +29,10 @@
}, },
'spack': { 'spack': {
'type': 'string', 'type': 'string',
'enum': ['develop', '0.14', '0.14.0'] 'enum': [
'develop',
'0.14', '0.14.0', '0.14.1', '0.14.2', '0.14.3'
]
} }
}, },
'required': ['image', 'spack'] 'required': ['image', 'spack']