mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 13:49:00 +08:00
4cbbcbddfd
* [vcpkg ci:osx] Remove brew install * add instructions for creating a new vagrant box * fix the vagrant scripts for the new box * finish fixing the setup * [mecab jxrlib] fix ports for CI mecab needed to use an actual ref that wasn't master, and jxrlib needed a patch for xcode 12 CLTs. Additionally, this fixes the mecab version to be a date, the date of the last commit, since `1.0` is not the correct version (mecab doesn't have released versions) * [many ports] fix compile with Xcode 12 CLTs This mostly means fixing errors on implicit-function-declaration, and removing some Werrors * alac-decoder * apr * argtable2 * arrow * hyperscan * mcpp * minizip * mosquitto * stormlib * [many ports] even more Xcode 12 CLT fixes * [jxrlib darknet] fix the last ports! (hopefully) * CRs, plus minor wip changes to osx scripts
53 lines
903 B
JSON
53 lines
903 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",
|
|
"access_key",
|
|
"urn",
|
|
"share"
|
|
],
|
|
"properties": {
|
|
"username": { "type": "string" },
|
|
"access_key": { "type": "string" },
|
|
"urn": { "type": "string" },
|
|
"share": { "type": "string" }
|
|
}
|
|
}
|
|
}
|
|
}
|