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
  • Loading branch information
deansheather committed Apr 10, 2025
commit fc9f6e1a68b38f1044983692d43ebeba87f3959d
2 changes: 0 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,9 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
run: |
$ErrorActionPreference = "Stop"
$files = Get-ChildItem -Path $env:RUNNER_TEMP -Recurse -File
$files | Select-Object FullName, Length
$files | Measure-Object -Property Length -Sum | Select-Object Sum
throw "done"
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