-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log more information about disk space and skip the MSVC builds on pub…
…lic (#3090) * Try and get more information as to disk space * Only build MSVC on the internal build The MSVC compiler is so heavy that the outputs are over 10.8GB whereas the LLVM compiler is just under 10.1GB. The public agent only starts with 12GB and after the checkout we are left with 10.67GB which is smaller than the 10.8GB required. The LLVM compiler just manages to pass under the bar with about 600MB spare. If the SkiaSharp artifacts get any bigger, then we will need custom machines for the public build.
- Loading branch information
1 parent
6a2982a
commit 9d7e8b0
Showing
3 changed files
with
79 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
if ($IsLinux -or $IsMacOS) { | ||
Write-Host "Not supported yet." | ||
df -h | ||
} else { | ||
Get-Volume | ||
} |