Skip to content

chore: update CI runners #17326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wtf 2
  • Loading branch information
deansheather committed Apr 10, 2025
commit 8ac98de7633e1ab6f4a2715f20e34758618db13f
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,11 @@ jobs:
shell: pwsh
run: |
$files = Get-ChildItem -Path $env:RUNNER_TEMP -Recurse -File
$files | Select-Object FullName, Length
$files | Measure-Object -Property Length -Sum | Select-Object Sum
foreach ($file in $files) {
Write-Output "$($file.FullName) $($file.Length)"
}
$size = ($files | Measure-Object -Property Length -Sum).Sum
Write-Output "Total Size: $size bytes"
Move-Item -Path $env:RUNNER_TOOL_CACHE -Destination "$env:RUNNER_TOOL_CACHE.old" -Force -ErrorAction SilentlyContinue
Move-Item -Path $env:RUNNER_TEMP -Destination "$env:RUNNER_TEMP.old" -Force -ErrorAction SilentlyContinue
"RUNNER_TEMP=R:\tmp" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Expand Down
Loading