mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +00:00
* Create ubuntu-report.yml * Update ubuntu-report.yml * Update ubuntu-report.yml * Update Common.Helpers.psm1 * Update ubuntu-report.yml * Update ubuntu-report.yml * Update SoftwareReport.Generator.ps1 * Update ubuntu-report.yml * Update ubuntu-report.yml * env vars * Implement language and runtime * Add package management section * fix typo * fix typo * add projectManagement and tools * fix some tools * add CLI tools, Java, PHP Tools, Haskell Tools, Rust Tools, Browsers, .NET Core * fix typo * more changes * fix typo * fix typo * fix typo * change templates * fix toolset * Update Ubuntu2004 and 2204 templates * fix cargo * fix tiny nitpicks * Fix AddToolVersionsList * Remove unused methods * Fix contructor
62 lines
1.8 KiB
PowerShell
62 lines
1.8 KiB
PowerShell
function Get-ChromeVersion {
|
|
$googleChromeVersion = google-chrome --version | Take-OutputPart -Part 2
|
|
return $googleChromeVersion
|
|
}
|
|
|
|
function Get-ChromeDriverVersion {
|
|
$chromeDriverVersion = chromedriver --version | Take-OutputPart -Part 1
|
|
return $chromeDriverVersion
|
|
}
|
|
|
|
function Get-FirefoxVersion {
|
|
$firefoxVersion = $(firefox --version) | Take-OutputPart -Part 2
|
|
return $firefoxVersion
|
|
}
|
|
|
|
function Get-GeckodriverVersion {
|
|
$geckodriverVersion = geckodriver --version | Select-Object -First 1 | Take-OutputPart -Part 1
|
|
return $geckodriverVersion
|
|
}
|
|
|
|
function Get-ChromiumVersion {
|
|
$chromiumVersion = chromium-browser --version | Take-OutputPart -Part 1
|
|
return $chromiumVersion
|
|
}
|
|
|
|
function Get-EdgeVersion {
|
|
$edgeVersion = (microsoft-edge --version).Trim() | Take-OutputPart -Part 2
|
|
return $edgeVersion
|
|
}
|
|
|
|
function Get-EdgeDriverVersion {
|
|
$edgeDriverVersion = msedgedriver --version | Take-OutputPart -Part 3
|
|
return $edgeDriverVersion
|
|
}
|
|
|
|
function Get-SeleniumVersion {
|
|
$seleniumBinaryName = Get-ToolsetValue "selenium.binary_name"
|
|
$fullSeleniumVersion = (Get-ChildItem "/usr/share/java/${seleniumBinaryName}-*").Name -replace "${seleniumBinaryName}-"
|
|
return $fullSeleniumVersion
|
|
}
|
|
|
|
function Build-BrowserWebdriversEnvironmentTable {
|
|
return @(
|
|
[PSCustomObject] @{
|
|
"Name" = "CHROMEWEBDRIVER"
|
|
"Value" = $env:CHROMEWEBDRIVER
|
|
},
|
|
[PSCustomObject] @{
|
|
"Name" = "EDGEWEBDRIVER"
|
|
"Value" = $env:EDGEWEBDRIVER
|
|
},
|
|
[PSCustomObject] @{
|
|
"Name" = "GECKOWEBDRIVER"
|
|
"Value" = $env:GECKOWEBDRIVER
|
|
},
|
|
[PSCustomObject] @{
|
|
"Name" = "SELENIUM_JAR_PATH"
|
|
"Value" = $env:SELENIUM_JAR_PATH
|
|
}
|
|
)
|
|
}
|