[FLINK-28329][Tests] Output the top 15 directories in terms of used disk space

pull/19856/head
MartijnVisser 3 years ago committed by MartijnVisser
parent e70fe68dea
commit a339704557

@ -109,7 +109,10 @@ function log_environment_info {
jps
echo "Disk information"
df -hH
df -h
echo "##[group]Top 15 biggest directories in terms of used disk space"
du -a . | sort -n -r | head -n 15
if sudo -n true 2>/dev/null; then
echo "Allocated ports"

@ -25,7 +25,7 @@ print_system_info() {
cat /proc/meminfo
echo "Disk information"
df -hH
df -h
echo "Running build as"
whoami

Loading…
Cancel
Save