mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +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
23 lines
904 B
PowerShell
23 lines
904 B
PowerShell
function Get-JavaVersions {
|
|
$defaultJavaPath = $env:JAVA_HOME
|
|
$javaVersions = Get-Item env:JAVA_HOME_*_X64
|
|
$sortRules = @{
|
|
Expression = { [Int32] $_.Name.Split("_")[2] }
|
|
Descending = $false
|
|
}
|
|
|
|
return $javaVersions | Sort-Object $sortRules | ForEach-Object {
|
|
$javaPath = $_.Value
|
|
# Take semver from the java path
|
|
# The path contains '-' sign in the version number instead of '+' due to the following issue, need to substitute it back https://github.com/actions/runner-images/issues/3014
|
|
$versionInPath = (Split-Path $javaPath) -replace "\w:\\.*\\"
|
|
$version = $versionInPath -replace '-', '+'
|
|
$defaultPostfix = ($javaPath -eq $defaultJavaPath) ? " (default)" : ""
|
|
|
|
[PSCustomObject] @{
|
|
"Version" = $version + $defaultPostfix
|
|
"Environment Variable" = $_.Name
|
|
}
|
|
}
|
|
}
|