vcpkg/scripts/azure-pipelines/osx/configuration/vagrant-configuration.schema.json
nicole mazzuca 397d3d7188
[vcpkg osx ci] update 2020-09-28 (#13799)
* [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
2020-09-29 16:49:49 -07:00

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" }
}
}
}
}