mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 20:58:32 +08:00
* Add Configure-Toolset for windows * Set error action preference to stop * Move toolcache.json to config folder * Fix in verbose * Rename toolsets folder * Move default version functions from install-toolset to configure-toolset * Rework Configure-Toolset * Fix typo and remove empty line * Fix issues * Fix parameters in helpers * Fix helper syntax * Rename defaultVariable
78 lines
2.2 KiB
JSON
78 lines
2.2 KiB
JSON
{
|
|
"toolcache": [
|
|
{
|
|
"name": "Python",
|
|
"url" : "https://raw.githubusercontent.com/actions/python-versions/master/versions-manifest.json",
|
|
"arch": "x64",
|
|
"platform" : "win32",
|
|
"versions": [
|
|
"2.7.*",
|
|
"3.5.*",
|
|
"3.6.*",
|
|
"3.7.*",
|
|
"3.8.*"
|
|
],
|
|
"default": "3.7.*"
|
|
},
|
|
{
|
|
"name": "Python",
|
|
"url" : "https://raw.githubusercontent.com/actions/python-versions/master/versions-manifest.json",
|
|
"arch": "x86",
|
|
"platform" : "win32",
|
|
"versions": [
|
|
"2.7.*",
|
|
"3.5.*",
|
|
"3.6.*",
|
|
"3.7.*",
|
|
"3.8.*"
|
|
]
|
|
},
|
|
{
|
|
"name": "PyPy",
|
|
"arch": "x86",
|
|
"platform" : "win32",
|
|
"versions": [
|
|
"2.7",
|
|
"3.6"
|
|
]
|
|
},
|
|
{
|
|
"name": "node",
|
|
"url" : "https://raw.githubusercontent.com/actions/node-versions/master/versions-manifest.json",
|
|
"arch": "x64",
|
|
"platform" : "win32",
|
|
"versions": [
|
|
"8.*",
|
|
"10.*",
|
|
"12.*",
|
|
"14.*"
|
|
]
|
|
},
|
|
{
|
|
"name": "go",
|
|
"url" : "https://raw.githubusercontent.com/actions/go-versions/master/versions-manifest.json",
|
|
"arch": "x64",
|
|
"platform" : "win32",
|
|
"versions": [
|
|
"1.9.*",
|
|
"1.10.*",
|
|
"1.11.*",
|
|
"1.12.*",
|
|
"1.13.*",
|
|
"1.14.*"
|
|
],
|
|
"default": "1.14.*"
|
|
},
|
|
{
|
|
"name": "Boost",
|
|
"url" : "https://raw.githubusercontent.com/actions/boost-versions/master/versions-manifest.json",
|
|
"arch": "x86_64",
|
|
"platform" : "win32",
|
|
"toolset": "msvc14.1",
|
|
"versions": [
|
|
"1.69.0",
|
|
"1.72.0"
|
|
]
|
|
}
|
|
]
|
|
} |