vcpkg/scripts/azure-pipelines/osx/configuration/installables.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

79 lines
1.5 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema",
"type": "object",
"definitions": {
"sha256": {
"type": "string",
"pattern": "[A-Z0-9]{64}"
}
},
"required": [
"Applications",
"Brew",
"VBoxExtensions"
],
"properties": {
"Applications": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"TestCommand": {
"type": "string"
},
"DmgUrl": {
"type": "string",
"format": "uri"
},
"Sha256": {
"$ref": "#/definitions/sha256"
},
"InstallerPath": {
"type": "string"
}
}
}
},
"Brew": {
"type": "array",
"items": {
"type": "object",
"required": [ "Name" ],
"properties": {
"Name": {
"type": "string"
},
"Kind": {
"type": "string",
"enum": [ "cask" ]
}
}
}
},
"VBoxExtensions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"FullName": {
"type": "string"
},
"Url": {
"type": "string",
"format": "uri"
},
"Sha256": {
"$ref": "#/definitions/sha256"
}
}
}
}
}
}