Compare commits

..

3 Commits

Author SHA1 Message Date
HarithaVattikuti
9144ffdc74 Point to actions 2025-01-08 13:21:52 -06:00
HarithaVattikuti
4222c5edc7 Point to HarithaVattikuti forked repo 2025-01-08 13:17:28 -06:00
HarithaVattikuti
0e31f060aa Point to Nodearm647z 2025-01-08 13:13:54 -06:00
4 changed files with 11 additions and 1407 deletions

View File

@@ -23,7 +23,7 @@ on:
jobs:
node:
name: Node
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@main
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@Nodearm647z
with:
tool-name: "node"
tool-version: ${{ inputs.VERSION || '18.12.0' }}

View File

@@ -1,7 +1,7 @@
name: Get Node versions
on:
schedule:
- cron: '0 0,12 * * *'
- cron: '0 3,15 * * *'
workflow_dispatch:
jobs:

View File

@@ -8,30 +8,13 @@ Describe "Node.js" {
function Get-UseNodeLogs {
# 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
if ($resolvedPath -and -not [string]::IsNullOrEmpty($resolvedPath.Path) -and (Test-Path $resolvedPath.Path)) {
$useNodeLogFile = Get-ChildItem -Path $resolvedPath | Where-Object {
$logContent = Get-Content $_.Fullname -Raw
return $logContent -match "setup-node@v"
} | Select-Object -First 1
# Return the file name if a match is found
if ($useNodeLogFile) {
return $useNodeLogFile.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"
}
$useNodeLogFile = Get-ChildItem -Path $logsFolderPath | Where-Object {
$logContent = Get-Content $_.Fullname -Raw
return $logContent -match "setup-node@v"
} | Select-Object -First 1
return $useNodeLogFile.Fullname
}
}

File diff suppressed because it is too large Load Diff