mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-06 01:09:07 +08:00
f0ae3efbb4
* [vcpkg-ci] fix macos setup scripts * the disk feature is still experimental * fix Get-InstalledVirtualBoxExtensionPacks * use new bash install script for brew instead of old-style ruby
49 lines
842 B
JSON
49 lines
842 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
"pat",
|
|
"base_name",
|
|
"disk_size",
|
|
"machine_identifiers",
|
|
"archives"
|
|
],
|
|
|
|
"properties": {
|
|
"pat": {
|
|
"type": "string"
|
|
},
|
|
"base_name": {
|
|
"type": "string"
|
|
},
|
|
"disk_size": {
|
|
"type": "integer"
|
|
},
|
|
"machine_identifiers": {
|
|
"type": "array",
|
|
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "[0-9]{2}"
|
|
}
|
|
},
|
|
"archives": {
|
|
"type": "object",
|
|
"required": [
|
|
"username",
|
|
"access_key",
|
|
"urn",
|
|
"share"
|
|
],
|
|
"properties": {
|
|
"username": { "type": "string" },
|
|
"access_key": { "type": "string" },
|
|
"urn": { "type": "string" },
|
|
"share": { "type": "string" }
|
|
}
|
|
}
|
|
}
|
|
}
|