diff --git a/scripts/ci/run-ci-tests.sh b/scripts/ci/run-ci-tests.sh index 29711d3c3..9b07fd966 100755 --- a/scripts/ci/run-ci-tests.sh +++ b/scripts/ci/run-ci-tests.sh @@ -118,7 +118,12 @@ print_env() { print_header "ulimit -a" ulimit -a print_header "Available memory" - free -h + if [ -e /etc/alpine-release ]; then + # Alpine's busybox based free does not understand -h + free + else + free -h + fi print_header "Available CPUs" lscpu || : }