-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdload.xsd
More file actions
260 lines (258 loc) · 18.3 KB
/
dload.xsd
File metadata and controls
260 lines (258 loc) · 18.3 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<!-- Root element -->
<xs:element name="dload">
<xs:annotation>
<xs:documentation>DLoad configuration for downloading and managing binary artifacts</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<!-- Actions container -->
<xs:element name="actions" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Container for download actions</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="download" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Defines a software package to download</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="software" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Software identifier to download</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="version" type="xs:string">
<xs:annotation>
<xs:documentation>
Version constraint using Composer-style syntax with optional feature suffixes
and stability requirements. If not specified, latest stable version is used.
Examples:
• "^2.12.0" - Caret constraint
• "~1.0.0" - Tilde constraint
• "^2.12.0-feature" - With feature suffix
• "^2.12.0@beta" - With explicit stability
• "^2.12.0-hotfix@rc" - Combined feature and stability
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="version-path" type="xs:string">
<xs:annotation>
<xs:documentation>Path to extract version from (e.g. composer.json@require.package/name)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="extract-path" type="xs:string">
<xs:annotation>
<xs:documentation>Custom path where to unpack downloaded asset</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="type">
<xs:annotation>
<xs:documentation>Download type determining how the asset is processed: binary (executable from archive), phar (PHP archive, no extraction), archive (extract all contents)</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="binary"/>
<xs:enumeration value="archive"/>
<xs:enumeration value="phar"/>
<xs:enumeration value="velox"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="velox" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Velox build action for creating custom RoadRunner binaries</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="plugin" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Plugin to include in the RoadRunner build</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="name" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Plugin name (required)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="version" type="xs:string">
<xs:annotation>
<xs:documentation>Plugin version constraint</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="owner" type="xs:string">
<xs:annotation>
<xs:documentation>Repository owner/organization</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="repository" type="xs:string">
<xs:annotation>
<xs:documentation>Repository name</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="replace" type="xs:string">
<xs:annotation>
<xs:documentation>Replacement source for the plugin (e.g., local path or alternative repository for Go module replacement)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="velox-version" type="xs:string">
<xs:annotation>
<xs:documentation>Version constraint for velox build tool</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="golang-version" type="xs:string">
<xs:annotation>
<xs:documentation>Required Go version constraint</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="roadrunner-ref" type="xs:string">
<xs:annotation>
<xs:documentation>RoadRunner Git reference (tag, commit, or branch) to use for building</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="config-file" type="xs:string">
<xs:annotation>
<xs:documentation>Path to local velox.toml file</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="binary-path" type="xs:string">
<xs:annotation>
<xs:documentation>Path to the RoadRunner binary to build</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="debug" type="xs:boolean">
<xs:annotation>
<xs:documentation>Build RoadRunner with debug symbols to profile it with pprof</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<!-- Registry container -->
<xs:element name="registry" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Custom software registry configuration</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="software" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Software configuration entity</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="repository" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Repository configuration</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="type" type="xs:string" default="github">
<xs:annotation>
<xs:documentation>Repository type identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="uri" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Repository URI identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="asset-pattern" type="xs:string" default="/^.*$/">
<xs:annotation>
<xs:documentation>Regular expression pattern to match assets</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="binary" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Binary configuration</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="name" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Binary executable name</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="pattern" type="xs:string">
<xs:annotation>
<xs:documentation>Regular expression pattern to match binary file during extraction</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="version-command" type="xs:string">
<xs:annotation>
<xs:documentation>Command argument to check binary version (e.g. "--version")</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="file" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>File configuration</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="pattern" type="xs:string" default="/^.*$/">
<xs:annotation>
<xs:documentation>Regular expression pattern to match files</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="rename" type="xs:string">
<xs:annotation>
<xs:documentation>Rename found file to this value with the same extension</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="extract-path" type="xs:string">
<xs:annotation>
<xs:documentation>Directory where to extract files</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Software package name</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="alias" type="xs:string">
<xs:annotation>
<xs:documentation>CLI command alias</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="homepage" type="xs:string">
<xs:annotation>
<xs:documentation>Official software homepage URL</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="description" type="xs:string">
<xs:annotation>
<xs:documentation>Short description of the software</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="overwrite" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>Replace the built-in software collection with custom ones</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="temp-dir" type="xs:string">
<xs:annotation>
<xs:documentation>Temporary directory for downloads</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:schema>