Compare commits

...

6 Commits

Author SHA1 Message Date
HarithaVattikuti
6e1322a96e Update logic 2025-07-10 17:54:18 -05:00
HarithaVattikuti
a3ba0f5826 rename variable 2025-07-09 23:42:59 -05:00
HarithaVattikuti
b9a5738c71 Updated logic 2025-07-09 23:34:47 -05:00
HarithaVattikuti
bac9381d43 Logs Path change 2025-07-09 18:52:14 -05:00
github-actions[bot]
a377a0baa6 Update versions-manifest (#116)
Co-authored-by: Service account <no-reply@microsoft.com>
2025-06-05 23:33:30 -05:00
github-actions[bot]
6263527c99 Update versions-manifest (#115)
Co-authored-by: Service account <no-reply@microsoft.com>
2025-05-07 08:42:21 -05:00
2 changed files with 194 additions and 6 deletions

View File

@@ -10,13 +10,29 @@ Describe "Go" {
function Get-UseGoLogs {
# GitHub Windows images don't have `HOME` variable
$homeDir = $env:HOME ?? $env:HOMEDRIVE
$logsFolderPath = Join-Path -Path $homeDir -ChildPath "runners/*/_diag/pages" -Resolve
$possiblePaths = @(
Join-Path -Path $homeDir -ChildPath "actions-runner/cached/_diag/pages"
Join-Path -Path $homeDir -ChildPath "runners/*/_diag/pages"
)
$logsFolderPath = $possiblePaths | Where-Object { Test-Path $_ } | Select-Object -First 1
$resolvedPath = Resolve-Path -Path $logsFolderPath -ErrorAction SilentlyContinue
$useGoLogFile = Get-ChildItem -Path $logsFolderPath | Where-Object {
$logContent = Get-Content $_.Fullname -Raw
return $logContent -match "setup-go@v"
} | Select-Object -First 1
return $useGoLogFile.Fullname
if ($resolvedPath -and -not [string]::IsNullOrEmpty($resolvedPath.Path) -and (Test-Path $resolvedPath.Path)) {
$useGoLogFile = Get-ChildItem -Path $resolvedPath | Where-Object {
$logContent = Get-Content $_.Fullname -Raw
return $logContent -match "setup-go@v"
} | Select-Object -First 1
# Return the file name if a match is found
if ($useGoLogFile) {
return $useGoLogFile.FullName
} else {
Write-Error "No matching log file found in the specified path: $($resolvedPath.Path)"
}
} else {
Write-Error "The provided logs folder path is null, empty, or does not exist: $logsFolderPath"
}
}
}

View File

@@ -1,4 +1,90 @@
[
{
"version": "1.24.4",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.4-15482447176",
"files": [
{
"filename": "go-1.24.4-darwin-arm64.tar.gz",
"arch": "arm64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.4-15482447176/go-1.24.4-darwin-arm64.tar.gz"
},
{
"filename": "go-1.24.4-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.4-15482447176/go-1.24.4-darwin-x64.tar.gz"
},
{
"filename": "go-1.24.4-linux-arm64.tar.gz",
"arch": "arm64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.4-15482447176/go-1.24.4-linux-arm64.tar.gz"
},
{
"filename": "go-1.24.4-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.4-15482447176/go-1.24.4-linux-x64.tar.gz"
},
{
"filename": "go-1.24.4-win32-arm64.zip",
"arch": "arm64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.4-15482447176/go-1.24.4-win32-arm64.zip"
},
{
"filename": "go-1.24.4-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.4-15482447176/go-1.24.4-win32-x64.zip"
}
]
},
{
"version": "1.24.3",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.3-14875263452",
"files": [
{
"filename": "go-1.24.3-darwin-arm64.tar.gz",
"arch": "arm64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.3-14875263452/go-1.24.3-darwin-arm64.tar.gz"
},
{
"filename": "go-1.24.3-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.3-14875263452/go-1.24.3-darwin-x64.tar.gz"
},
{
"filename": "go-1.24.3-linux-arm64.tar.gz",
"arch": "arm64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.3-14875263452/go-1.24.3-linux-arm64.tar.gz"
},
{
"filename": "go-1.24.3-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.3-14875263452/go-1.24.3-linux-x64.tar.gz"
},
{
"filename": "go-1.24.3-win32-arm64.zip",
"arch": "arm64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.3-14875263452/go-1.24.3-win32-arm64.zip"
},
{
"filename": "go-1.24.3-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.3-14875263452/go-1.24.3-win32-x64.zip"
}
]
},
{
"version": "1.24.2",
"stable": true,
@@ -128,6 +214,92 @@
}
]
},
{
"version": "1.23.10",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.23.10-15482449421",
"files": [
{
"filename": "go-1.23.10-darwin-arm64.tar.gz",
"arch": "arm64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.10-15482449421/go-1.23.10-darwin-arm64.tar.gz"
},
{
"filename": "go-1.23.10-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.10-15482449421/go-1.23.10-darwin-x64.tar.gz"
},
{
"filename": "go-1.23.10-linux-arm64.tar.gz",
"arch": "arm64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.10-15482449421/go-1.23.10-linux-arm64.tar.gz"
},
{
"filename": "go-1.23.10-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.10-15482449421/go-1.23.10-linux-x64.tar.gz"
},
{
"filename": "go-1.23.10-win32-arm64.zip",
"arch": "arm64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.10-15482449421/go-1.23.10-win32-arm64.zip"
},
{
"filename": "go-1.23.10-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.10-15482449421/go-1.23.10-win32-x64.zip"
}
]
},
{
"version": "1.23.9",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.23.9-14875265214",
"files": [
{
"filename": "go-1.23.9-darwin-arm64.tar.gz",
"arch": "arm64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-darwin-arm64.tar.gz"
},
{
"filename": "go-1.23.9-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-darwin-x64.tar.gz"
},
{
"filename": "go-1.23.9-linux-arm64.tar.gz",
"arch": "arm64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-arm64.tar.gz"
},
{
"filename": "go-1.23.9-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz"
},
{
"filename": "go-1.23.9-win32-arm64.zip",
"arch": "arm64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-win32-arm64.zip"
},
{
"filename": "go-1.23.9-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-win32-x64.zip"
}
]
},
{
"version": "1.23.8",
"stable": true,