-
Notifications
You must be signed in to change notification settings - Fork 1
/
buildspec.schema.json
67 lines (67 loc) · 2.07 KB
/
buildspec.schema.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$id": "https://github.com/Sledmine/mercury/buildspec.schema.json",
"title": "Halo CE Buildspec",
"type": "object",
"properties": {
"version": {
"type": "number",
"description": "The version of the buildspec schema to use."
},
"tag_space": {
"type": "string",
"description": "Tag space size that will be reserved for map usage.",
"enum": [
"64M",
"128M"
]
},
"extend_limits": {
"type": "boolean",
"description": "Extend map limits to the maximum possible size."
},
"resource_usage": {
"type": "string",
"description": "Resource usage mode, can be 'none', 'check' or 'always'.",
"enum": [
"none",
"check",
"always"
]
},
"with_index": {
"type": "string",
"description": "Include an index file in the build."
},
"script_resource": {
"type": "string",
"description": "Script resource mode, can be 'data or 'tags', tags is the default.",
"enum": [
"data",
"tags"
]
},
"auto_forge": {
"type": "boolean",
"description": "Ensure the map will be network compatible with the target engine's stock maps."
},
"stock_resource_bounds": {
"type": "boolean",
"description": "Only index tags if the tag's index is within stock Custom Edition's resource map bounds."
},
"scenarios": {
"type": "array",
"description": "List of scenarios to build."
},
"commands": {
"type": "object",
"description": "Commands map that belong to this project buildspec."
},
"extra_tags": {
"type": "array",
"description": "List of extra tags to include in the build."
}
},
"required": [
"version"
]
}