spack containerize: allow 0.14.1 and 0.14.2 tags

fixes #16727
This commit is contained in:
Massimiliano Culpo 2020-05-27 14:02:37 +02:00 committed by Peter Scheibel
parent 6ddc077e08
commit 187cb51b49
2 changed files with 16 additions and 5 deletions

View File

@ -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"
}
}
}

View File

@ -29,7 +29,10 @@
},
'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']