mirror of
https://github.com/actions/runner-images.git
synced 2025-12-18 15:57:17 +00:00
Install PyPy from official site instead of NPM for Ubuntu (#879)
* install PyPy from official site
This commit is contained in:
committed by
GitHub
parent
a8f49b6630
commit
47c7968b9d
@@ -28,7 +28,8 @@ $ErrorActionPreference = "Stop"
|
||||
|
||||
# Get toolset content
|
||||
$toolsetJson = Get-Content -Path "$env:INSTALLER_SCRIPT_FOLDER/toolset.json" -Raw
|
||||
$tools = ConvertFrom-Json -InputObject $toolsetJson | Select-Object -ExpandProperty toolcache
|
||||
$toolsToInstall = @("Python", "Node")
|
||||
$tools = ConvertFrom-Json -InputObject $toolsetJson | Select-Object -ExpandProperty toolcache | Where {$ToolsToInstall -contains $_.Name}
|
||||
|
||||
foreach ($tool in $tools) {
|
||||
# Get versions manifest for current tool
|
||||
|
||||
Reference in New Issue
Block a user