Skip to content

Commit

Permalink
Auto merge of #40371 - arielb1:bean-counter, r=alexcrichton
Browse files Browse the repository at this point in the history
add some disk usage accounting

Try to figure out why we are out of free space

r? @alexcrichton
  • Loading branch information
bors committed Mar 9, 2017
2 parents ee60afa + 8bbbfec commit 758f374
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ env:
# AWS_SECRET_ACCESS_KEY=...
- secure: "Pixhh0hXDqGCdOyLtGFjli3J2AtDWIpyb2btIrLe956nCBDRutRoMm6rv5DI9sFZN07Mms7VzNNvhc9wCW1y63JAm414d2Co7Ob8kWMZlz9l9t7ACHuktUiis8yr+S4Quq1Vqd6pqi7pf2J++UxC8R/uLeqVrubzr6+X7AbmEFE="

before_script:
- >
echo "#### Disk usage before running script:";
df -h;
du . | sort -nr | head -n100
script:
- >
if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
Expand All @@ -110,6 +116,18 @@ script:
src/ci/docker/run.sh $IMAGE;
fi
after_success:
- >
echo "#### Build successful; Disk usage after running script:";
df -h;
du . | sort -nr | head -n100
after_failure:
- >
echo "#### Build failed; Disk usage after running script:";
df -h;
du . | sort -nr | head -n100
# Save tagged docker images we created and load them if they're available
before_cache:
- docker history -q rust-ci |
Expand Down

0 comments on commit 758f374

Please sign in to comment.