cargo/ci/dump-environment.sh
2022-06-02 17:55:45 -07:00

14 lines
197 B
Bash
Executable file

#!/bin/bash
# This script dumps information about the build environment to stdout.
set -euo pipefail
IFS=$'\n\t'
echo "environment variables:"
printenv | sort
echo
echo "disk usage:"
df -h
echo