mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-06 03:09:04 +08:00
397d3d7188
* [vcpkg osx ci] update to newer bits these ones should actually work! * update vagrantfile * correct scripts, reformat, add docs * Finish Get-InternalBaseBox, move archives In order to avoid people maliciously deleting the boxes, the archives share and file share are in different users now. * baseline libqcow to be fixed later * actually check for the mount point * fix Install-Prerequisites again * add +x to Get-InternalBaseBox.ps1 additionally, fix some errors
51 lines
835 B
JSON
51 lines
835 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"
|
|
},
|
|
"agent_pool": {
|
|
"type": "string"
|
|
},
|
|
"devops_url": {
|
|
"type": "string"
|
|
},
|
|
"machine_name": {
|
|
"type": "string"
|
|
},
|
|
"box_name": {
|
|
"type": "string"
|
|
},
|
|
"box_version": {
|
|
"type": "string"
|
|
},
|
|
"disk_size": {
|
|
"type": "integer"
|
|
},
|
|
"archives": {
|
|
"type": "object",
|
|
"required": [
|
|
"username",
|
|
"urn",
|
|
"path"
|
|
],
|
|
"properties": {
|
|
"username": { "type": "string" },
|
|
"urn": { "type": "string" },
|
|
"path": { "type": "string" }
|
|
}
|
|
}
|
|
}
|
|
}
|