mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
15 lines
569 B
PowerShell
15 lines
569 B
PowerShell
################################################################################
|
|
## File: Validate-DiskSpace.ps1
|
|
## Desc: Validate free disk space
|
|
################################################################################
|
|
|
|
$availableSpaceMB = [math]::Round((Get-PSDrive -Name C).Free / 1MB)
|
|
$minimumFreeSpaceMB = 15 * 1024
|
|
|
|
Write-Host "Available disk space: $availableSpaceMB MB"
|
|
if ($availableSpaceMB -le $minimumFreeSpaceMB)
|
|
{
|
|
Write-Host "Not enough disk space on the image (minimum available space: $minimumFreeSpaceMB MB)"
|
|
exit 1
|
|
}
|