From 96cfa968f0404801b89dc7ef13d3ea9b61138246 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 8 Mar 2017 07:16:27 -0800 Subject: [PATCH] travis: Attempt to debug out of disk errors Sprinkle a few `df -h` calls to see if we can see how much space our builds are taking up and also how much space we've got to work with. --- src/ci/run.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ci/run.sh b/src/ci/run.sh index 4c4836d7ca230..a00e4e777fae4 100755 --- a/src/ci/run.sh +++ b/src/ci/run.sh @@ -58,9 +58,13 @@ else fi fi +df -h + $SRC/configure $RUST_CONFIGURE_ARGS retry make prepare +df -h + if [ "$TRAVIS_OS_NAME" = "osx" ]; then ncpus=$(sysctl -n hw.ncpu) else @@ -76,3 +80,5 @@ else make -j $ncpus make $RUST_CHECK_TARGET -j $ncpus fi + +df -h