mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00:00
* virtual-environments => runner-images - as per https://github.blog/changelog/2022-08-08-github-actions-runner-images-repository-refresh * revert readme changes - as per https://github.com/actions/runner-images/pull/6033#discussion_r941173809
24 lines
1022 B
PowerShell
24 lines
1022 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)" : ""
|
|
$VendorName = ($javaPath -like '*Java_Adopt_jdk*') ? "Adopt OpenJDK" : "Eclipse Temurin"
|
|
|
|
[PSCustomObject] @{
|
|
"Version" = $version + $defaultPostfix
|
|
"Vendor" = $VendorName
|
|
"Environment Variable" = $_.Name
|
|
}
|
|
}
|
|
} |