mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
Document environment variables of linux images (#2498)
* Document environment variables of linux images * Change adnroid variables * Apply reviews * Remove some variables, fix headers * Show link targets * rename helper * remove symlinks * More links * Dynamic GO variables * Architecture for GO variables * remove GOROOT
This commit is contained in:
@@ -21,4 +21,22 @@ function Get-GeckodriverVersion {
|
||||
function Get-ChromiumVersion {
|
||||
$chromiumVersion = chromium --version | Take-OutputPart -Part 0,1
|
||||
return $chromiumVersion
|
||||
}
|
||||
}
|
||||
|
||||
function Build-BrowserWebdriversEnvironmentTable {
|
||||
return @(
|
||||
@{
|
||||
"Name" = "CHROMEWEBDRIVER"
|
||||
"Value" = $env:CHROMEWEBDRIVER
|
||||
},
|
||||
@{
|
||||
"Name" = "GECKOWEBDRIVER"
|
||||
"Value" = $env:GECKOWEBDRIVER
|
||||
}
|
||||
) | ForEach-Object {
|
||||
[PSCustomObject] @{
|
||||
"Name" = $_.Name
|
||||
"Value" = $_.Value
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user