mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +00:00
14 lines
543 B
Bash
14 lines
543 B
Bash
#!/bin/bash
|
|
################################################################################
|
|
## File: validate-disk-space.sh
|
|
## Desc: Validate free disk space
|
|
################################################################################
|
|
|
|
availableSpaceMB=$(df / -hm | sed 1d | awk '{ print $4}')
|
|
minimumFreeSpaceMB=17800
|
|
|
|
echo "Available disk space: $availableSpaceMB MB"
|
|
if [ $availableSpaceMB -le $minimumFreeSpaceMB ]; then
|
|
echo "Not enough disk space on the image (minimum available space: $minimumFreeSpaceMB MB)"
|
|
exit 1
|
|
fi |