Skip to content

Commit 96cfa96

Browse files
committed
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.
1 parent f91c3f6 commit 96cfa96

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/ci/run.sh

+6
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,13 @@ else
5858
fi
5959
fi
6060

61+
df -h
62+
6163
$SRC/configure $RUST_CONFIGURE_ARGS
6264
retry make prepare
6365

66+
df -h
67+
6468
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
6569
ncpus=$(sysctl -n hw.ncpu)
6670
else
@@ -76,3 +80,5 @@ else
7680
make -j $ncpus
7781
make $RUST_CHECK_TARGET -j $ncpus
7882
fi
83+
84+
df -h

0 commit comments

Comments
 (0)