mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 20:49:07 +08:00
e6cabdece5
* start 2021-04-16 process Major new things: * update to macOS Big Sur (11.*) * switch from VirtualBox to Parallels due to ^ (and also ARM) Minor new things: * update from xcode CLT 12 to 12.4 This PR includes new stuff for creating the base box for parallels. Still to do: using the new box type. * update the vagrantfile stuff * link the CI to the new version * modify how macOS boxes are made the Vagrantfile for the final VM will only download the azure pipeline stuff this allows us to keep the versions of brew applications stable * fix cpus and memory * add vagrant plugins to installables * Skip cppgraphqlgen ICE. * [sdformat6] Remove unneeded include(FindBoost) which causes problems when the system cmake version doesn't match the one deployed by vcpkg. * switch to dmg for installing osxfuse/sshfs * Set cores to 11 (leaving 1 thread for host) Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
84 lines
1.6 KiB
JSON
84 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"definitions": {
|
|
"sha256": {
|
|
"type": "string",
|
|
"pattern": "[A-Z0-9]{64}"
|
|
}
|
|
},
|
|
"required": [
|
|
"Applications",
|
|
"Brew",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"Brew": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [ "Name" ],
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"Kind": {
|
|
"type": "string",
|
|
"enum": [ "cask" ]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"VagrantPlugins": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [ "Name", "Version" ],
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"Version": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|