more space checks (#2234)

This commit is contained in:
James Hodgkinson 2023-10-16 16:24:24 +10:00 committed by GitHub
parent eead47aec8
commit fced4c485c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,11 +46,17 @@ jobs:
- name: "Check disk space and size of target, then clean it"
run: |
df -h
du -sh target/
echo "Checking base dir"
du -shc *
echo "Checking target dir"
du -shc target/*
rm -rf target/*
- name: "Run cargo test"
run: cargo test
- name: "Check disk space at the end"
run:
du -shc *
run_release:
runs-on: ubuntu-latest
env: