Skip to content

Commit bf74776

Browse files
committed
Check diskspace
1 parent 0adb6e9 commit bf74776

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release-binaries.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,13 @@ jobs:
283283
run: |
284284
cat S:/build/tools/clang/stage2-instrumented-bins/tools/clang/stage2-bins/_CPack_Packages/win64/WIX/wix.log
285285
286+
- name: Check Disk
287+
if: always() && startsWith(runner.os, 'Windows')
288+
run: |
289+
Get-WmiObject -Class Win32_LogicalDisk -ComputerName LOCALHOST | ? {$_. DriveType -eq 3} | select DeviceID, {$_.Size /1GB}, {$_.FreeSpace /1GB}
290+
-
291+
292+
286293
upload-release-binaries:
287294
name: "Upload Release Binaries"
288295
needs:

0 commit comments

Comments
 (0)