diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/schema/ci.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/schema/ci.py b/lib/spack/spack/schema/ci.py index 3706415e30..e616058b99 100644 --- a/lib/spack/spack/schema/ci.py +++ b/lib/spack/spack/schema/ci.py @@ -47,7 +47,7 @@ attributes_schema = { "tags": {"type": "array", "items": {"type": "string"}}, "variables": { "type": "object", - "patternProperties": {r"[\w\d\-_\.]+": {"type": "string"}}, + "patternProperties": {r"[\w\d\-_\.]+": {"type": ["string", "number"]}}, }, "before_script": script_schema, "script": script_schema, |