mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
more space checks (#2234)
This commit is contained in:
parent
eead47aec8
commit
fced4c485c
8
.github/workflows/rust_build.yml
vendored
8
.github/workflows/rust_build.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue