summaryrefslogtreecommitdiff
path: root/lib/spack/spack/schema/cdash.py
blob: 2df2ea3f3286b700a20201145b1845512b8522b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

"""Schema for cdash.yaml configuration file.

.. literalinclude:: ../spack/schema/cdash.py
   :lines: 13-
"""


#: Properties for inclusion in other schemas
properties = {
    'cdash': {
        'type': 'object',
        'additionalProperties': False,
        'required': ['build-group', 'url', 'project', 'site'],
        'patternProperties': {
            r'build-group': {'type': 'string'},
            r'url': {'type': 'string'},
            r'project': {'type': 'string'},
            r'site': {'type': 'string'},
        },
    },
}


#: Full schema with metadata
schema = {
    '$schema': 'http://json-schema.org/schema#',
    'title': 'Spack cdash configuration file schema',
    'type': 'object',
    'additionalProperties': False,
    'properties': properties,
}