Skip to content

Commit 24b7e46

Browse files
committed
Add some more logging
1 parent c0d8451 commit 24b7e46

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

native/winui-angle/build.cake

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,19 @@ Task("sync-ANGLE")
8080
RunPython(ANGLE_PATH, ANGLE_PATH.CombineWithFilePath("tools/clang/scripts/update.py"));
8181
}
8282

83+
// long the free space
84+
RunProcess("pwsh", ROOT_PATH.CombineWithFilePath("scripts/get-free-space.ps1").FullPath);
85+
8386
// generate Windows App SDK files
8487
if (!FileExists(WINAPPSDK_PATH.CombineWithFilePath("Microsoft.WindowsAppSDK.nuspec"))) {
8588
var setup = ANGLE_PATH.CombineWithFilePath("scripts/winappsdk_setup.py");
8689
RunProcess(
8790
ROOT_PATH.CombineWithFilePath("scripts/vcvarsall.bat"),
8891
$"\"{VS_INSTALL}\" \"x64\" \"{PYTHON_EXE}\" \"{setup}\" --output \"{WINAPPSDK_PATH}\"");
8992
}
93+
94+
// long the free space
95+
RunProcess("pwsh", ROOT_PATH.CombineWithFilePath("scripts/get-free-space.ps1").FullPath);
9096
});
9197

9298
Task("ANGLE")

0 commit comments

Comments
 (0)