Skip to content

Commit b2027b6

Browse files
committed
TEMP : show disk space
1 parent 43e28fe commit b2027b6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,21 @@ jobs:
159159
# gets clobbered by the `scons test*` call below.
160160
cp config.log buildConfig.log
161161
162+
- name: SpacePre
163+
run: Get-WmiObject -Class Win32_LogicalDisk -ComputerName localhost | ? {$_. DriveType -eq 3} | select DeviceID, {$_.Size /1GB}, {$_.FreeSpace /1GB}
164+
if: runner.os == 'Windows'
165+
162166
- name: Test
163167
run: |
164168
scons ${{ matrix.tests }} BUILD_TYPE=${{ matrix.buildType }} OPTIONS=${{ matrix.options }} BUILD_CACHEDIR=sconsCache
165169
env:
166170
IECORE_RTLD_GLOBAL: 0
167171
OCIO: ${{ env.CORTEX_BUILD_NAME }}/openColorIO/config.ocio
168172

173+
- name: SpacePost
174+
run: Get-WmiObject -Class Win32_LogicalDisk -ComputerName localhost | ? {$_. DriveType -eq 3} | select DeviceID, {$_.Size /1GB}, {$_.FreeSpace /1GB}
175+
if: runner.os == 'Windows'
176+
169177
- name: Build Package
170178
run: |
171179
scons install BUILD_TYPE=${{ matrix.buildType }} OPTIONS=${{ matrix.options }} BUILD_CACHEDIR=sconsCache

0 commit comments

Comments
 (0)