File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,24 @@ jobs:
223
223
run : |
224
224
cd src/ci/citool
225
225
CARGO_INCREMENTAL=0 CARGO_TARGET_DIR=../../../build/citool cargo build
226
-
226
+
227
+ - name : Free Diskspace
228
+ shell : pwsh
229
+ if : contains(matrix.os, 'windows')
230
+ run : |
231
+ Get-Volume | Out-String | Write-Host
232
+ #diskusage /t:500 C:\
233
+ $dirs = 'C:\Windows\Installer', 'C:\Program Files\LLVM\bin',
234
+ 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm',
235
+ 'C:\rtools45', 'C:\ghcup', 'C:\Program Files (x86)\Android',
236
+ 'C:\Program Files\Google\Chrome', 'C:\Program Files (x86)\Microsoft\Edge',
237
+ 'C:\Program Files\Mozilla Firefox', 'C:\Program Files\MySQL', 'C:\Julia',
238
+ 'C:\Program Files\MongoDB', 'C:\Program Files\Azure Cosmos DB Emulator',
239
+ 'C:\Program Files\PostgreSQL', 'C:\Program Files\Unity Hub', 'C:\ProgramData\chocolatey',
240
+ 'C:\ProgramData\Package Cache', 'C:\Strawberry', 'C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk'
241
+ Remove-Item -Recurse -Force -ErrorAction Continue $dirs
242
+ Get-Volume | Out-String | Write-Host
243
+
227
244
- name : run the build
228
245
run : |
229
246
set +e
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ runners:
31
31
<< : *base-job
32
32
33
33
- &job-windows
34
- os : windows-2022
34
+ os : windows-2025
35
35
<< : *base-job
36
36
37
37
# NOTE: windows-2025 has less disk space available than windows-2022,
@@ -41,7 +41,7 @@ runners:
41
41
<< : *base-job
42
42
43
43
- &job-windows-8c
44
- os : windows-2022 -8core-32gb
44
+ os : windows-2025 -8core-32gb
45
45
<< : *base-job
46
46
47
47
- &job-windows-25-8c
You can’t perform that action at this time.
0 commit comments