mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 16:19:02 +08:00
5edd518dc3
* [macos ci] update to 2022-01-03 * update the instructions * forgot to update azure-pipelines-osx.yml * install parallels in Install-Prerequisites.ps1 * oops * fix ace, libsoundio, and libpqxx * tensorflow doesn't yet support macOS 12
67 lines
1.3 KiB
JSON
67 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"definitions": {
|
|
"sha256": {
|
|
"type": "string",
|
|
"pattern": "[A-Z0-9]{64}"
|
|
}
|
|
},
|
|
"required": [
|
|
"Applications",
|
|
"VagrantPlugins"
|
|
],
|
|
"properties": {
|
|
"Applications": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"VersionCommand": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"minItems": 1
|
|
},
|
|
"VersionRegex": {
|
|
"type": "string",
|
|
"format": "regex"
|
|
},
|
|
"Version": {
|
|
"type": "string"
|
|
},
|
|
"DmgUrl": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"Sha256": {
|
|
"$ref": "#/definitions/sha256"
|
|
},
|
|
"InstallerPath": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"VagrantPlugins": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [ "Name", "Version" ],
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"Version": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|