mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
* Use Resolve-GithubReleaseAssetUrl more widely * Add the Get-ChecksumFromUrl function * Sort exported functions and add docs * Remove alias and fix typo * Fix kind checksum url and syntax * Fix checksums url for gh cli and msys2 * [Windows] Cleanup various scripts * Add spaces after type specifications * Rename the Take-Part function
37 lines
1.9 KiB
PowerShell
37 lines
1.9 KiB
PowerShell
################################################################################
|
|
## File: Install-PowershellCore.ps1
|
|
## Desc: Install PowerShell Core
|
|
## Supply chain security: checksum validation
|
|
################################################################################
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$tempDir = Join-Path ([System.IO.Path]::GetTempPath()) ([System.IO.Path]::GetRandomFileName())
|
|
$null = New-Item -ItemType Directory -Path $tempDir -Force -ErrorAction SilentlyContinue
|
|
try {
|
|
$originalValue = [Net.ServicePointManager]::SecurityProtocol
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
|
|
|
|
$metadata = Invoke-RestMethod https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/metadata.json
|
|
$release = $metadata.LTSReleaseTag[0] -replace '^v'
|
|
$downloadUrl = "https://github.com/PowerShell/PowerShell/releases/download/v${release}/PowerShell-${release}-win-x64.msi"
|
|
|
|
$installerName = Split-Path $downloadUrl -Leaf
|
|
$externalHash = Get-ChecksumFromUrl -Type "SHA256" `
|
|
-Url ($downloadUrl -replace $installerName, "hashes.sha256") `
|
|
-FileName $installerName
|
|
Install-Binary -Url $downloadUrl -ExpectedSHA256Sum $externalHash
|
|
} finally {
|
|
# Restore original value
|
|
[Net.ServicePointManager]::SecurityProtocol = $originalValue
|
|
Remove-Item -Path $tempDir -Recurse -Force -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
# about_update_notifications
|
|
# While the update check happens during the first session in a given 24-hour period, for performance reasons,
|
|
# the notification will only be shown on the start of subsequent sessions.
|
|
# Also for performance reasons, the check will not start until at least 3 seconds after the session begins.
|
|
[Environment]::SetEnvironmentVariable("POWERSHELL_UPDATECHECK", "Off", "Machine")
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "PowerShell Core"
|