mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
61 lines
2.3 KiB
PowerShell
61 lines
2.3 KiB
PowerShell
################################################################################
|
|
## File: Install-Toolset.ps1
|
|
## Team: CI-Build
|
|
## Desc: Install toolset
|
|
################################################################################
|
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityProtocolType]::Tls13
|
|
|
|
Function Install-Asset {
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[object] $ReleaseAsset
|
|
)
|
|
|
|
$releaseAssetName = [System.IO.Path]::GetFileNameWithoutExtension($ReleaseAsset.filename)
|
|
$assetFolderPath = Join-Path $env:TEMP_DIR $releaseAssetName
|
|
$assetArchivePath = Invoke-DownloadWithRetry $ReleaseAsset.download_url
|
|
|
|
Write-Host "Extract $($ReleaseAsset.filename) content..."
|
|
if ($assetArchivePath.EndsWith(".tar.gz")) {
|
|
$assetTarPath = $assetArchivePath.TrimEnd(".tar.gz")
|
|
Expand-7ZipArchive -Path $assetArchivePath -DestinationPath $assetTarPath
|
|
Expand-7ZipArchive -Path $assetTarPath -DestinationPath $assetFolderPath
|
|
} else {
|
|
Expand-7ZipArchive -Path $assetArchivePath -DestinationPath $assetFolderPath
|
|
}
|
|
|
|
Write-Host "Invoke installation script..."
|
|
Push-Location -Path $assetFolderPath
|
|
Invoke-Expression .\setup.ps1
|
|
Pop-Location
|
|
}
|
|
|
|
# Get toolcache content from toolset
|
|
$toolsToInstall = @("Python", "Node", "Go")
|
|
$tools = Get-ToolsetContent | Select-Object -ExpandProperty toolcache | Where-Object { $toolsToInstall -contains $_.Name }
|
|
|
|
foreach ($tool in $tools) {
|
|
# Get versions manifest for current tool
|
|
# Invoke-RestMethod doesn't support retry in PowerShell 5.1
|
|
$assets = Invoke-ScriptBlockWithRetry -Command {
|
|
Invoke-RestMethod $tool.url
|
|
}
|
|
|
|
# Get github release asset for each version
|
|
foreach ($toolVersion in $tool.versions) {
|
|
$asset = $assets `
|
|
| Where-Object version -like $toolVersion `
|
|
| Select-Object -ExpandProperty files `
|
|
| Where-Object { ($_.platform -eq $tool.platform) -and ($_.arch -eq $tool.arch) -and ($_.toolset -eq $tool.toolset) } `
|
|
| Select-Object -First 1
|
|
|
|
if (-not $asset) {
|
|
throw "Asset for $($tool.name) $toolVersion $($tool.arch) not found in versions manifest"
|
|
}
|
|
|
|
Write-Host "Installing $($tool.name) $toolVersion $($tool.arch)..."
|
|
Install-Asset -ReleaseAsset $asset
|
|
}
|
|
}
|